1
0

Updated README

This commit is contained in:
Michael Verdi
2025-07-29 17:23:22 -05:00
parent b0430a75ee
commit a9eac66f69

View File

@@ -6,12 +6,12 @@ Got an immersive video you want people to see with the Apple Vision Pro or Meta
## How to use it ## How to use it
Add the player script `<script type="module" src="vr180-player.js"></script>` before the closing body tag and use this HTML snippet: Add the player script `<script type="module" src="vr180-player.js"></script>` before the closing body tag and use this HTML snippet:
``` ```
<div id="player-container"> <div id="vr-container">
<video id="vrVideo" title="VR180 Video" crossOrigin="anonymous" playsinline> <video id="vr180" poster="poster.jpg" title="Demo Video" crossOrigin="anonymous" playsinline>
<source src="sbs-video.mp4" type="video/mp4"> <source src="sbs-video.mp4" type="video/mp4">
</video> </video>
</div> </div>
<button id="enterVrBtn">Enter VR</button> <button id="playBtn">Play</button>
``` ```
This creates a button on your page. When VR is available, the button will be active and clicking it will begin the immersive experience. This creates a button on your page. When VR is available, the button will be active and clicking it will begin the immersive experience.