Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
  <head>
    <title>Aframe discovering 360 videos</title>
    <meta name="description" content="Aframe discovering 360 videos">
    <script src="https://aframe.io/releases/0.5.0/aframe.js"></script>  
  </head>
  <body>
    <div id="playbutton" style="background:rgba(255,255,255,0.2); position:absolute; top:30%; left:00%; padding:15px; z-index:999; color:white;" onClick="startVideo()">
  <h1 border="1">Welcome to this immersive experience. </br></br> Click to begin.</h1>
</div>
<script>
function startVideo(){
      var videoEl = document.querySelector('#video');
      videoEl.play();
      var playbutton = document.querySelector('#playbutton');
      playbutton.style.display = "none"
}
  
if (!AFRAME.utils.device.isMobile()){
      var playbutton = document.querySelector('#playbutton');
      playbutton.style.display = "none"
} else {
    startVideo()
}
</script>
    <a-scene>
      <a-assets>
        <video id="video" webkit-playsinline loop="false" src="https://fabien.benetou.fr/pub/home/AFrameWorkshop/360Videos/TheWrongGuy360.mp4"></video>
      </a-assets>
      
      <a-videosphere src="#video" rotation="0 -90 0"></a-videosphere>
    
      
      <!-- add elements (primitives, effects, etc) at the right moment using https://aframe.io/docs/0.5.0/core/animations.html -->
    </a-scene>
  </body>
</html>
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Utopiahpro
0viewers