forked from jeuelc/mworld-flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sub-naturalworld.html
60 lines (50 loc) · 2.84 KB
/
sub-naturalworld.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!-- i-C-a -->
<div data-role="page" id="naturalworld2">
<div data-role="content" style="overflow:hidden !important;">
<div id="titleb-holder"><h1 style="margin-top:184px;">The Natural World</h1></div>
<div style="width:90%;margin:auto;">
<div class="aclink"><a href="#" data-transition="slide" id="agmovielink"><img src="css/images/9-12/The_Natural_World/weatherbtn.png"></a></div>
<div class="aclink"><a href="#" id="volmovielink" data-transition="slide"><img src="css/images/9-12/The_Natural_World/volcanoesbtn.png"></a></div>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/deepseabtn.png"></a></div>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/mountainsbtn.png"></a></div><br>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/iceagebtn.png"></a></div>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/earthquakebtn.png"></a></div>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/junglebtn.png"></a></div>
<div class="aclink"><a href="#" data-transition="slide"><img src="css/images/9-12/The_Natural_World/fireandfloodbtn.png"></a></div>
</div>
<div class="botlogoholder"><a href="home.html" class="homelinkbh"><img src="css/images/9-12/bottomhome.png"></a></div>
<div id="pre-bh" style="width:1024px;height:748px;position:absolute;left:0px;top:0px;visibility:hidden;background:#000000;">
<div class="previdcontainer">
<video id="volvideo" width="1024" height="722" preload>
<source src="video/volcanoes_intro.mov" type="video/mp4">
</video>
</div>
</div> <!--/pre-bh -->
</div> <!-- end content -->
<script>
// sound setup is in home.html and index.js
$(function() {
$("#naturalworld2").swipe( { swipeRight:goBack, allowPageScroll:"auto"} );
});
function goBack() {
$.mobile.changePage("home.html");
naturalsoundbg.pause(); naturalsoundbg.currentTime = 0;
mainaudiobg.play();
}
$('#homelinknaturalworld').on('tap', function() {
mainaudiobg.play(); naturalsoundbg.pause(); naturalsoundbg.currentTime = 0;
});
$('#volmovielink').on('tap', function() {
naturalsoundbg.pause(); naturalsoundbg.currentTime = 0;
//bgsoundvol.play();
$("#pre-bh").css({"visibility":"visible", "z-index":2});
volvideo.play();
});
$("#volvideo").on('tap', function() {
volvideo.pause();
volvideo.currentTime = 0;
bgsoundvol.play();
$.mobile.changePage("sub-naturalworld-volcanoes.html");
});
</script>
</div>