-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpano_video.html
79 lines (62 loc) · 2.19 KB
/
pano_video.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>测试视频</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<style>
#example {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
</head>
<body>
<div id="example"></div>
<script src="../build/three.js"></script>
<script src="../build/mxreality.js"></script>
<script>
window.onload = function () {
init();
}
//var vr=new VR(scene,renderer,container);
function init() {
var vr = new VR({ 'id': 'example', 'camera_para': { "fov": 50 } });
//vr.playText="<img src='img/play90.png' width='40' height='40'/>";
vr.vrbox.radius = 600;
if (AVR.isCrossScreen()) {
vr.effect.separation = 1.2;
}
vr.loadProgressManager.onLoad = function () {
}
//AVR.useGyroscope=false;
vr.init(function () {
});
var options = { 'muted': true, 'autoplay': true };
vr.play('/examples/textures/vr.mp4', vr.resType.video, options);
//vr.video.setAttribute('muted', 'muted');
//vr.video.setAttribute('autoplay', 'autoplay');
//vr.video.setAttribute("loop", "loop");
//vr.video.crossOrigin = "*";
vr.video.play();
vr.video.onended = function () {
}
window.addEventListener('resize', function () {
var isHuawei = navigator.userAgent.match(/;\sHUAWEI\s[a-zA-Z0-9\-]+\sBuild\//);
if (AVR.OS.isWeixin() && !AVR.OS.isiOS() && isHuawei) {
if (vr.video.getAttribute('x5-video-orientation') == "landscape") {
vr.toolBar.toolbar.style.width = document.body.clientWidth + "px";
} else {
vr.toolBar.toolbar.style.width = "100%";
}
}
})
window.addEventListener('click', function () {
//vr.controls.gyroUnfreeze();
})
}
</script>
</body>
</html>