-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
56 lines (50 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta content="telephone=no,email=no" name="format-detection">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<title>anyRTC 娃娃机</title>
<script src="http://g.tbcdn.cn/mtb/lib-flexible/0.3.4/??flexible_css.js,flexible.js"></script>
<link rel="stylesheet" href="./static/css/index.css">
</head>
<body>
<div class="app">
<div class="app_notice container">
<div class="wawaji_tips">
<a href="tel:021-65650071">
<img src="./static/img/img_banner.png" alt="">
</a>
</div>
</div>
<div class="app_wawaji_list">
<div class="">
<ul class="wawaji_list" id="wawajiList">
</ul>
</div>
</div>
</div>
<script id="listTemplate" type="text/html">
<li class="am-u-sm-6">
<a href="{{ link }}">
<div class="wawaji_item">
<div class="wawaji_item_hd">
<img src="./static/img/img_bg.png" alt="">
</div>
<div class="wawaji_item_bd">
<h1>{{ room_username }}</h1>
<p><img src="./static/img/icon_weiguan.png" alt=""> <span>{{ room_member }}</span></p>
</div>
<div class="wawaji_item_ft">
<div class="wawaji_state">
<img src="./static/img/icon_weihuing.png" alt=""> <span class="{{ class }}">{{ room_state }}</span>
</div>
</div>
</div>
</a>
</li>
</script>
</body>
</html>