top of page
Writer's pictureAbby Kessler

Pop Quiz: A-Frame Glitch VR (advanced worlds)


Code:


<!DOCTYPE html>

<html>

<head>

<script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>

<script src="https://rawgit.com/mayognaise/aframe-gif-shader/master/dist/aframe-gif-shader.min.js"></script>

<script src="https://rawgit.com/mayognaise/aframe-gif-component/master/dist/aframe-gif-component.min.js"></script>

<script src="https://raw.githack.com/donmccurdy/aframe-extras/master/dist/aframe-extras.loaders.min.js"></script>

</head>

<body>

<a-scene>

<a-box position="-1 0.5 -3" rotation="0 45 0" color="#e6ff75"></a-box>

<a-gltf-model src="#cat"></a-gltf-model>

<a-sphere position="0 1.25 -5" radius="1.25" color="#d77feb"></a-sphere>

<a-cylinder

position="1 0.75 -3"

radius="0.5"

height="1.5"

color="#7db1ba"

></a-cylinder>

<a-plane

position="0 0 -4"

rotation="-90 0 0"

width="200"

height="200"

src="https://cdn.glitch.global/82a0d67d-22f1-4f30-97a7-903a07a9d542/pexels-pixmike-413195.jpg?v=1666901929522"

></a-plane>

<a-sky color="#ECECEC"></a-sky>

<a-videosphere src="#sky"></a-videosphere>


<a-assets>

<video

id="sky"

autoplay

loop="true"

src="https://cdn.glitch.global/82a0d67d-22f1-4f30-97a7-903a07a9d542/Pexels%20Videos%202568.mp4?v=1666900865296"

></video>

<a-asset-item

><img

id="grass"

src="https://cdn.glitch.me/566518fb-10be-4b4a-9e2a-bfd0cbad5ceb%2Fgrass.jpg?v=1638578807337"

/></a-asset-item>

</a-assets>

</a-scene>

</body>

</html>

3 views0 comments

Recent Posts

See All

Comments


bottom of page