-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.html
73 lines (62 loc) · 1.7 KB
/
Test.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
<script>
function makeFullScreen(divObj) {
if (!document.fullscreenElement && // alternative standard method
!document.mozFullScreenElement && !document.webkitFullscreenElement && !document.msFullscreenElement) {
if (divObj.requestFullscreen) {
divObj.requestFullscreen();
} else if (divObj.msRequestFullscreen) {
divObj.msRequestFullscreen();
} else if (divObj.mozRequestFullScreen) {
divObj.mozRequestFullScreen();
} else if (divObj.webkitRequestFullscreen) {
divObj.webkitRequestFullscreen();
} else {
console.log("Fullscreen API is not supported");
}
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
try {
//divObj.playbackRate*=-1;
} catch (e) {
}
}
</script>
<style>
video::-webkit-media-controls :not(.with-controls) {
display:none !important;
}
div video {
height: 100%;
width: 100%;
}
* {
background-color:black;
color:white;
}
</style>
<div id="wrap">
<video id="v1" onclick="this.paused ? this.play() : this.pause();" ondblclick="makeFullScreen(document.getElementById('wrap'))">
<source type="video/mp4" src="AutoDiff.mp4">
</video>
</div>
Player2:
<video class="with-controls" controls="controls">
<source type="video/mp4" src="AutoDiff.mp4">
</video>
<script>
document.getElementById('v1').addEventListener('touchstart', function (e) {
if(e.touches.length > 1) {
document.getElementById('v1').playbackRate*=-1;
return false;
}
});
</script>