-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.html
65 lines (58 loc) · 1.3 KB
/
component.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sting-UI</title>
<link rel="stylesheet" href="./build/css/flag.css">
<style rel="stylesheet">
.section{
width: 1036px;
margin: 0 auto 20px;
}
.ie-btn{
display: inline-block;
*display: inline;
*zoom: 1;
padding: 0 15px;
line-height: 32px;
width: auto;
overflow: visible;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="section">
<h1>UI</h1>
</div>
</div>
<div class="wrapper">
<div class="section">
<div class="ctrl-form" style="position: relative;z-index: 40;">
<label for="" class="ctrl-label">手机号码</label>
<div class="input-wrap">
<input name="mobile" autocomplete="off" maxlength="11" type="text" data-jvalid-ruler="empty mobile_err" class="input">
<i class="icon"></i>
<input type="checkbox">
</div>
</div>
</div>
</div>
<!--Script Start-->
<script src="http://js.io/js/jquery-1.11.1.js"></script>
<script src="src/js/components/dialog.js"></script>
<script type="text/javascript">
(function(){
var d = dialog({
title: '这是一个dialog',
content: 'dialog',
okValue: '确定',
ok: function(){}
});
d.show();
})()
</script>
<!--/Script End-->
</body>
</html>