Multiple sets of images can be arranged into multiple scenes to build a story (note: currently, vrEmbed will always start with the first scene listed in the embed).
You can name these scenes by adding a
name="scene name" qualifier to the <scene> tag. You can then create a visual hyperlink to these scenes by adding a
jumpTo attribute on text or decal objects.
See the result here.
<div>
<story>
<scene name="Corner Crashes">
<photo src="https://lisa-wolfgang.github.io/vrEmbed/../src/assets/byobw_2013_a.jpg" isStereo="false" sphereParams="100,66,60,-10"/>
<photo src="https://lisa-wolfgang.github.io/vrEmbed/../src/assets/byobw_2013_b.jpg" isStereo="false" sphereParams="100,66,-60,0"/>
<text sphereParams="35,30,30,-30" jumpTo="Finish line">Finish line</text>
</scene>
<scene name="Finish line">
<photo src="https://lisa-wolfgang.github.io/vrEmbed/../src/assets/byobw_2014_a.jpg" isStereo="false" sphereParams="100,66,60,0"/>
<photo src="https://lisa-wolfgang.github.io/vrEmbed/../src/assets/byobw_2014_b.jpg" isStereo="false" sphereParams="100,66,-60,-20"/>
<text sphereParams="40,30,-20,-20" jumpTo="Corner crashes">Corner crashes</text>
</scene>
</story><script async src="//lisa-wolfgang.github.io/vrEmbed/vrEmbed.min.js" charset="utf-8"></script>
</div>