-
Notifications
You must be signed in to change notification settings - Fork 0
/
detail_content_layer.html
77 lines (70 loc) · 2.93 KB
/
detail_content_layer.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/ui-tab.css">
<link rel="stylesheet" href="css/ui-base.css">
<link rel="stylesheet" href="css/ui-box.css">
<link rel="stylesheet" href="css/ui-color.css">
<link rel="stylesheet" href="css/ui-res.css">
<link rel="stylesheet" href="css/ui-365.css">
<script src="js/zepto.min.js"></script>
<script src="js/beihai365_comman.js"></script>
<script src="js/beihai365_global.js"></script>
<script src="js/zy_control.js"></script>
<script src="js/zy_click.js"></script>
</head>
<body class="um-vp">
<div id="page" class="up ub ub-ver" tabindex="0">
<!--header开始-->
<div id="header">
<div class="ub ub-ac read-layer-header">
<div class=" ub-f1">
<div class="read-header-left ub ub-ac">
<span class="read-header-back" ontouchstart="zy_touch('click_opacity')" onclick="closePage();"></span>
<span class="read-header-title" id="read-header-title"></span>
</div>
</div>
<div class="read-header-right ub ub-ac">
<div class="read-header-tiedan" ontouchstart="zy_touch('click_opacity')" onclick="openTiedan()">
<span>帖单</span>
</div>
<div class="read-header-share" ontouchstart="zy_touch('click_opacity')" onclick="showShare();">
<span></span>
</div>
</div>
</div>
</div>
<!--header结束-->
<!--content开始-->
<!--content结束--><!--footer开始-->
<!--content结束-->
<!--footer开始-->
</div>
<!--footer结束-->
</div>
</body>
<script>
var $winName;
window.uexOnload = function(type) {
$winName = ("detail" + localStorage.detailWindowId);
if (uexWidgetOne.iOS7Style) {
$(".read-layer-header").css({
"padding-top" : "1.25rem"
});
}
}
function closePage() {
uexWindow.evaluateScript($winName, 0, "closeWin();");
}
function openTiedan(){
uexWindow.evaluateScript($winName, 0, "goPopoverScript('openTiedan()')");
//goPopoverScript
}
function showShare(){
uexWindow.evaluateScript($winName, 0, "_showShare()");
}
</script>
</html>