-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
236 lines (205 loc) · 10 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="icon.png">
<link rel="Bookmark" href="icon.png">
<title>你我有缘</title>
<link type="text/css" rel="stylesheet" href="./css/jquery.mobile-1.3.1.min.css">
<link type="text/css" rel="stylesheet" href="./css/jqm-demos.css">
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/index.js"></script>
<script type="text/javascript" src="./js/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src="./jwplayer/jwplayer.js"></script>
<script type="text/javascript" src="./jwplayer/jwplayer.html5.js"></script>
<script type="text/javascript" src="./js/image.js"></script>
<script type="text/css">
@font-face {
font-family: 'Open Sans'
font-style: normal
font-weight: 300
src: local('Open Sans Light'), local('OpenSans-Light'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format('woff')
}
@font-face {
font-family: 'Open Sans'
font-style: normal
font-weight: 400
src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff')
}
@font-face {
font-family: 'Open Sans'
font-style: normal
font-weight: 700
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format('woff')
}
</script>
<style>
/* Adjust the width of the left reveal menu.
Copy all CSS from jquery.mobile.panel.css and delete the properties other than width, left, right and transform.
Then delete the selectors/rules for display modes (reveal/push/overlay) and the position (left/right) that you don't use.
If you don't use fixed toolbars on your page you can delete those selectors as well.
Narrow the scope of the selectors to prevent other panels being affected by the overrides. */
#demo-page #left-panel.ui-panel {
width: 15em;
}
#demo-page #left-panel.ui-panel-closed {
width: 0;
}
#demo-page .ui-panel-position-left.ui-panel-display-reveal {
left: 0;
}
#demo-page .ui-panel-content-wrap-position-left.ui-panel-content-wrap-open,
.ui-panel-dismiss-position-left.ui-panel-dismiss-open {
left: 15em;
right: -15em;
}
#demo-page .ui-panel-animate.ui-panel-content-wrap-position-left.ui-panel-content-wrap-open.ui-panel-content-wrap-display-reveal {
left: 0;
right: 0;
-webkit-transform: translate3d(15em,0,0);
-moz-transform: translate3d(15em,0,0);
transform: translate3d(15em,0,0);
}
/* Combined listview collapsible menu. */
/* Unset negative margin bottom on the listviews. */
#left-panel .ui-panel-inner > .ui-listview { margin-bottom: 0; }
/* Unset top and bottom margin on collapsible set. */
#left-panel .ui-collapsible-set { margin: 0; }
/* The first collapsible contains the collapsible set. Make it fit exactly in the collapsible content. */
#left-panel .ui-panel-inner > .ui-collapsible > .ui-collapsible-content { padding-top: 0; padding-bottom: 0; border-bottom: none; }
/* Remove border top if a collapsible comes after a listview. */
#left-panel .ui-panel-inner > .ui-collapsible > .ui-collapsible-heading .ui-btn,
#left-panel .ui-collapsible.ui-first-child .ui-collapsible-heading .ui-btn { border-top: none; }
/* Give the first collapsible heading the same padding, i.e. same height, as the list items. */
#left-panel .ui-collapsible-heading .ui-btn-inner { padding: .7em 40px .7em 15px; }
/* Give the other collapsible headings the same padding and font-size as the list divider. */
#left-panel .ui-collapsible-set .ui-collapsible-heading .ui-btn-inner { padding: .5em 40px .5em 15px; font-size: 14px; }
/* Styling of the close button in both panels. */
#demo-page .ui-panel-inner > .ui-listview .ui-first-child {
background: #eee;
}
/* Reveal menu shadow on top of the list items */
#demo-page .ui-panel-display-reveal {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#demo-page .ui-panel-content-wrap-position-left {
-webkit-box-shadow: -5px 0px 5px rgba(0,0,0,.15);
-moz-box-shadow: -5px 0px 5px rgba(0,0,0,.15);
box-shadow: -5px 0px 5px rgba(0,0,0,.15);
}
/* Use the ui-body class of your page theme (ui-body-d in this demo) to set a background image.
This class will be added to the content wrapper, while the page itself gets the same background
as the panel before opening the panel. */
#demo-page .ui-body-d {
background-image: url(./bg-pattern.png);
background-repeat: repeat-x;
background-position: left bottom;
}
/* Styling of the page contents */
.article div {
//padding: 5px;
}
.article p {
margin: 0 0 1em;
line-height: 1.5;
}
.article p img {
max-width: 100%;
}
.article p:first-child {
text-align: center;
}
.article small {
display: block;
font-size: 75%;
color: #c0c0c0;
}
.article p:last-child {
text-align: right;
}
.article a.ui-btn {
//margin-right: 2em;
-webkit-border-radius: .4em;
border-radius: .4em;
}
@media all and (min-width:769px) {
.article {
margin: 0 auto;
}
/* Fix for issue with buttons and form elements
if CSS columns are used on a page with a panel. */
.article a.ui-btn {
-webkit-transform: translate3d(0,0,0);
}
}
</style>
</head>
<body>
<div data-role="page" id="demo-page" data-theme="d">
<div data-role="header" data-theme="c">
<h1 id="videoTitle">你我有缘</h1>
<a href="#left-panel" data-icon="bars" data-iconpos="notext" data-shadow="false" data-iconshadow="false">Menu</a>
</div><!-- /header -->
<div data-role="content">
<!--
-->
<div class="article">
<div id="videoDetail"></div><br>
<!--播放器开始-->
<div id="videoField"></div><br>
<div><a id="btn_pause" class="jqm-button ui-btn ui-shadow ui-btn-corner-all ui-btn-inline ui-btn-up-c" data-role="button" data-inline="true" data-theme="c"><span class="ui-btn-inner">暂停 / 播放</span></a>
<a id="btn_stop" class="jqm-button ui-btn ui-shadow ui-btn-corner-all ui-btn-inline ui-btn-up-c" data-role="button" data-inline="true" data-theme="c"><span class="ui-btn-inner"> 停 止 </span></a>
<a href="#left-panel" class="jqm-button ui-btn ui-shadow ui-btn-corner-all ui-btn-inline ui-btn-up-c" data-role="button" data-inline="true" data-theme="c"><span class="ui-btn-inner">返回菜单</span></a></div><br>
<!--播放器结束-->
</div><!-- /article -->
<!--
-->
</div><!-- /content -->
<div data-role="panel" id="left-panel" data-theme="c">
<ul data-role="listview" data-theme="d">
<li data-icon="delete"><a href="#" data-rel="close"><b>视频点播</b></a></li>
<li><a href="#left-panel" id="btn_zifen">天安门自焚真相</a></li>
<li><a href="#left-panel" id="btn_tongxin">“全世界都知道!”</a></li>
<li><a href="#left-panel" id="btn_fengyu">4.25中南海上访真相</a></li>
<li><a href="#left-panel" id="btn_lijie">风雨天地行之-历劫</a></li>
<li><a href="#left-panel" id="btn_pw720">破雾-走过七二零</a></li>
</ul>
<div data-role="collapsible" data-inset="false" data-iconpos="right" data-theme="d" data-content-theme="d">
<h3><b>更多视频…</b></h3>
<div data-role="collapsible-set" data-inset="false" data-iconpos="right" data-theme="b" data-content-theme="d">
<div data-role="collapsible">
<h3>明慧十方</h3>
<ul data-role="listview">
<li><a href="#left-panel" id="btn_yehao">走出政治,走入修炼</a></li>
<li><a href="#left-panel" id="btn_kevin">从西方到东方</a></li>
<li><a href="#left-panel" id="btn_pingfan">平凡不平凡</a></li>
</ul>
</div><!-- /collapsible -->
<div data-role="collapsible">
<h3>世事关心</h3>
<ul data-role="listview">
<li><a href="#left-panel" id="btn_sszj">活摘器官黑幕</a></li>
<li><a href="#left-panel" id="btn_future">未来人的神话故事</a></li>
<li><a href="#left-panel" id="btn_305">永恒的电波</a></li>
<li><a href="#left-panel" id="btn_2009">法轮大法洪传世界</a></li>
<li><a href="#left-panel" id="btn_gzs">中国的良心</a></li>
</ul>
</div><!-- /collapsible -->
<div data-role="collapsible">
<h3>影视文艺</h3>
<ul data-role="listview">
<li><a href="#left-panel" id="btn_zhenhan">电影-震撼</a></li>
<li><a href="#left-panel" id="btn_sy">神韵世界巡回专辑</a></li>
<li><a href="#left-panel" id="btn_lotus">音乐动画</a></li>
<li><a href="#left-panel" id="btn_cyss">纪实文学-穿越生死</a></li>
</ul>
</div><!-- /collapsible -->
</div><!-- /collapsible-set -->
</div><!-- /collapsible -->
</div><!-- /panel -->
</div><!-- /page -->
</body>
</html>