-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo_detail.html
114 lines (109 loc) · 4.88 KB
/
video_detail.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>That's App H5</title>
<link rel="stylesheet" type="text/css" href="dist/css/app-bundle.css">
</head>
<body>
<div class="app-container video-detail">
<div class="app-content">
<div class="img-container">
<img class="app-lazyload" src="img/default.png" data-original="img/1.jpg">
</div>
<div class="headline">
<h2>Shanghai Prefect Night Out Review at Xuhui District</h2>
<p>By <a href="#">Joseph Miao</a>, <time>November 27, 2015</time></p>
</div>
<div class="content">
<p>
Command-C Copy the selected item to the Clipboard. This also works for files in the Finder.
Command-V Paste the contents of the Clipboard into the current document or app. This also works for files in the Finder.
Command-Z Undo the previous command. You can then press Command-Shift-Z to Redo, reversing the undo command. In some apps, you can undo and redo multiple commands.
Command-A Select All items. <br><br>
Command-F Find: Open a Find window, or find items in a document.
Command-G Find Again: Find the next occurrence of the item previously found. To find the previous occurrence, press Command-Shift-G.
Command-H Hide the windows of the front app. To view the front app but hide all other apps, press Command-Option-H.<br>
<img class="app-lazyload" src="img/default.png" data-original="img/2.jpg">
<br>
Command-M Minimize the front window to the Dock. To minimize all windows of the front app, press Command-Option-M.
Command-N New: Open an new document or window.
Command-O Open the selected item, or open a dialog to select a file to open.
Command-P Print the current document.
Command-S Save the current document.
Command-W Close the front window. To close all windows of the app, press Command-Option-W.
Command-Q Quit the app.
</p>
<div class="player">
<video poster="https://cdn.selz.com/plyr/1.0/poster.jpg" controls crossorigin>
<!-- 视频文件 -->
<source src="https://cdn.selz.com/plyr/1.0/movie.mp4" type="video/mp4">
<source src="https://cdn.selz.com/plyr/1.0/movie.webm" type="video/webm">
<!-- 字幕文件 -->
<!-- <track kind="captions" label="English captions" src="https://cdn.selz.com/plyr/1.0/movie_captions_en.vtt" srclang="en" default> -->
<!-- 针对不支持 <video> 元素的兼容 -->
<a href="https://cdn.selz.com/plyr/1.0/movie.mp4">Download</a>
</video>
</div>
<p>
Command-C Copy the selected item to the Clipboard. This also works for files in the Finder.
Command-V Paste the contents of the Clipboard into the current document or app. This also works for files in the Finder.
Command-Z Undo the previous command. You can then press Command-Shift-Z to Redo, reversing the undo command. In some apps, you can undo and redo multiple commands.
Command-A Select All items. <br><br>
</p>
<div class="tags">
<a href="#" type="button" class="btn btn-tag">Shanghai</a>
<a href="#" type="button" class="btn btn-tag">Hello</a>
<a href="#" type="button" class="btn btn-tag">Twitter</a>
<a href="#" type="button" class="btn btn-tag">Facebook</a>
<a href="#" type="button" class="btn btn-tag">Tecent</a>
<a href="#" type="button" class="btn btn-tag">Alibaba</a>
</div>
</div>
</div>
<div class="app-footer">
<h2>MORE NEWS</h2>
<div class="item">
<img class="app-lazyload" src="img/default.png" data-original="img/2.jpg">
<h3>LuYuan, China Miss World 2015, helloworld javascript</h3>
<p>
Command-P Print the current document.
Command-S Save the current document.
Command-W Close the front window. To close all windows of the app, press Command-Option-W.
Command-Q Quit the app.
</p>
</div>
<div class="item">
<img class="app-lazyload" src="img/default.png" data-original="img/3.jpg">
<h3>LuYuan, China Miss World 2015</h3>
<p>
Command-P Print the current document.
Command-S Save the current document.
Command-W Close the front window. To close all windows of the app, press Command-Option-W.
Command-Q Quit the app.
</p>
</div>
</div>
</div>
<script>
(function(d, p){
var a = new XMLHttpRequest(),
b = d.body;
a.open("GET", p, true);
a.send();
a.onload = function(){
var c = d.createElement("div");
c.style.display = "none";
c.innerHTML = a.responseText;
b.insertBefore(c, b.childNodes[0]);
}
})(document, "css/plyr.svg");
</script>
<script type="text/javascript" src="dist/js/zepto.min.js"></script>
<script type="text/javascript" src="dist/js/app-all.js"></script>
<script type="text/javascript">
$('.app-lazyload').picLazyLoad();
</script>
</body>
</html>