-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (63 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, miximum=1.0, user-scalable=no" />
<meta name="format-detection" content="telephone=no, email=no" />
<meta http-equiv="pragra" content="no-cache">
<meta name="screen-orientation" content="portrait">
<meta name="flexible" content="initial-dpr=1, maximum-dpr=1" />
<meta name="x5-orientation" content="portrait">
<meta name="author" content="邓文斌,dengwb1991">
<title>Dwb Vue Drawer</title>
<style type="text/css">
input {
height: 38px;
line-height: 38px;
font-size: 22px;
width: 200px;
margin-bottom: 40px;
}
button {
height: 28px;
line-height: 28px;
margin-left: 20px;
width: 60px;
background: orange;
border: none;
border-radius: 4px;
font-family: PingFangSC-Medium;
font-size: 12px;
color: #FFFFFF;
user-select: none;
outline: none;
}
</style>
</head>
<body>
<div id="app">
<div class="open" @click="show">BOTTOM</div>
<dwb-vue-drawer :visible.sync="visible"
:position="position"
:lock-scroll="lockScroll"
:mask-closable="maskClosable"
:z-index="zIndex"
:mask-style="maskStyle"
:container-style="containerStyle"
@open="open"
@close="close">
<ul>
<li>111</li>
<li>222</li>
<li>333</li>
<li>444</li>
<li>555</li>
<li>666</li>
</ul>
</dwb-vue-drawer>
</div>
</body>
</html>