-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVR.html
83 lines (75 loc) · 3.08 KB
/
VR.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="pics-label" content='(pics-1.1 "http://www.icra.org/ratingsv02.html" l gen true for "http://www.apple.com" r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true for "http://www.apple.com" r (n 0 s 0 v 0 l 0))' />
<meta name="Author" content="Apple Inc." />
<meta name="viewport" content="width=1024" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="viewport" content="width=1024; maximum-scale=1.2;" />
<title>Safari Technology Demo - VR</title>
<meta name="omni_page" content="HTML5 - VR" />
<meta name="Category" content="" />
<meta name="Description" content="" />
<script src="js/libs/prototype.js" type="text/javascript" charset="utf-8"></script>
<script src="js/libs/scriptaculous.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/vr/browserdetect.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/vr/apple_core.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/vr/library.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/vr/vr_spinner.js" type="text/javascript" charset="utf-8"></script>
<script src="js/mylibs/vr/vr.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="css/vr/base.css" type="text/css" />
<link rel="stylesheet" href="css/vr/blackout.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/vr/html5.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/vr/showcase.css" type="text/css" />
<link rel="stylesheet" href="css/vr/vr.css" type="text/css" media="screen" />
<script type="text/javascript" charset="utf-8">
document.observe("dom:loaded", function() {
if(AC.Detector.isiPad()) {
$('main').addClassName('isipad');
}
});
</script>
</head>
<body>
<article id="main" class="content">
<section id="showcase">
<div id="html5-showcase" class="showcase">
<div id="vr" class="container">
<header>
<h1>VR</h1>
</header>
<section id="vr-main">
<div id="vr-clipper">
<div id="vr-container">
<div id="vr-position">
<div id="rotor-x">
<div id="rotateX">
<div id="rotor-y">
<div id="rotateY">
<div id="cube">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="controls">
<div class="how grid2col">
<div class="column first">
<p><strong>Try it out:</strong> Pan around to explore the view from the iconic 32-foot tall glass cube of the Apple Store Fifth Avenue.</p>
</div>
<div class="column last">
<p><strong>About this demo:</strong> Utilizing CSS 3D transforms, this 360-degree interior view of the Apple Store Fifth Avenue takes advantage of hardware acceleration.</p>
</div>
</div>
</section>
</div>
</div>
</section>
</article>
</body>
</html>