-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaapi_content.html
More file actions
62 lines (56 loc) · 1.91 KB
/
mediaapi_content.html
File metadata and controls
62 lines (56 loc) · 1.91 KB
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
<!DOCTYPE html>
<html class="um landscape min-width-240px min-width-320px min-width-480px min-width-768px min-width-1024px">
<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/fonts/font-awesome.min.css">
<link rel="stylesheet" href="css/appcan.control.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/project/new.css">
</head>
<body class="um-vp" ontouchstart>
<div>
<!--列表开始-->
<div class="c-wh-pLG" id="listview">
</div>
<!--列表结束-->
</div>
<script src="js/appcan.js"></script>
<script src="js/appcan.control.js"></script>
<script src="js/appcan.listview.js"></script>
</body>
<script>
appcan.ready(function(){
appcan.initBounce();
})
var lv = appcan.listview({
selector : "#listview",
type : "multiLine",
hasIcon : false,
hasAngle : false,
hasSubTitle:false
});
lv.set([{
title : "uexAudio",
describe : '音频',
pagename : "uexAudio",
pageurl:"mediaapi/uexAudio.html"
}, {
title : "uexImageBrowser",
describe : '图片',
pagename : "uexImageBrowser",
pageurl:"mediaapi/uexImageBrowser.html"
}, {
title : "uexVideo",
describe : '视频',
pagename : "uexVideo",
pageurl:"mediaapi/uexVideo.html"
}]);
lv.on('click', function(ele, context, obj, subobj) {
appcan.window.open(context.pagename,context.pageurl,10);
})
</script>
</html>