-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 1.72 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
64
65
66
67
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8">
<title>course2017_checkbox</title>
<link rel="stylesheet" href="css/public.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="content">
<h1>背景图方式</h1>
<div class="content-block">
<h2>checkbox</h2>
<label class="ui-checkbox">
<input type="checkbox" name="chk">
<span class="origin"></span>
<span class="txt">选择一</span>
</label>
<label class="ui-checkbox">
<input type="checkbox" name="chk">
<span class="origin"></span>
<span class="txt">选择二</span>
</label>
</div>
<div class="content-block">
<h2>radio</h2>
<label class="ui-radio">
<input type="radio" name="chk">
<span class="origin"></span>
<span class="txt">男</span>
</label>
<label class="ui-radio">
<input type="radio" name="chk">
<span class="origin"></span>
<span class="txt">女</span>
</label>
</div>
<h1>伪元素方式</h1>
<div class="content-block">
<h2>checkbox</h2>
<label class="ui-checkbox _pure">
<input type="checkbox" name="chk">
<span class="origin"></span>
<span class="txt">选择一</span>
</label>
<label class="ui-checkbox _pure">
<input type="checkbox" name="chk">
<span class="origin"></span>
<span class="txt">选择二</span>
</label>
</div>
<div class="content-block">
<h2>radio</h2>
<label class="ui-radio _pure">
<input type="radio" name="chk">
<span class="origin"></span>
<span class="txt">男</span>
</label>
<label class="ui-radio _pure">
<input type="radio" name="chk">
<span class="origin"></span>
<span class="txt">女</span>
</label>
</div>
</div>
</body>
</html>