-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.ejs
137 lines (115 loc) · 3.03 KB
/
index.ejs
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<meta charset="UTF-8">
<title>vui-icon demo</title>
<script src="https://unpkg.com/[email protected]"></script>
<script src="lib/vue-feather.min.js?v=<%= Date.now() %>"></script>
<style type="text/css">
body {
margin: 0;
}
.demo {
width: 1080px;
margin: 0 auto;
overflow: hidden;
font-family: arial;
}
.github {
font-size: 20px;
text-align: center;
padding: 80px 0;
background: #41B883;
margin-bottom: 20px;
}
.icons {
overflow: hidden;
}
.github a {
color: rgba(255, 255, 255, .9);
text-decoration: none;
border-bottom: 1px solid;
}
.box {
width: 120px;
height: 100px;
float: left;
text-align: center;
}
.icon {
width: 24px;
color: #384047;
}
.name {
margin-top: 10px;
font-size: 12px;
color: #666;
}
.search {
position: relative;
padding: 0 20px;
margin-bottom: 20px;
}
.search .icon-search {
position: absolute;
left: 40px;
top: 50%;
margin-top: -12px;
color: #aaa;
}
.search input {
display: block;
width: 100%;
height: 60px;
padding: 0 20px 0 54px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 1px solid #ccc;
outline: none;
}
.search input:focus {
border: 1px solid #41B883
}
.search input:focus + .icon {
color: #41B883
}
</style>
</head>
<body>
<div class="github">
<a href="https://github.com/qinshenxue/vue-icon">https://github.com/qinshenxue/vue-icon</a>
</div>
<div class="demo">
<div class="search">
<input type="text" placeholder="Search <%= icons.length %> icons" @input="searchIcon">
<icon name="search"></icon>
</div>
<div class="icons">
<% icons.forEach(function(icon){ %>
<div class="box" title="<%= icon %>">
<icon name="<%= icon %>"></icon>
<div class="name"><%= icon %></div>
</div>
<% }) %>
</div>
</div>
<script type="text/javascript">
new Vue({
el: '.demo',
methods: {
searchIcon: function (e) {
var keyword = e.target.value
var arr = Array.prototype.slice.call(document.querySelectorAll('.box'))
arr.forEach(function (el) {
if (el.title.indexOf(keyword) > -1) {
el.style.display = 'block'
} else {
el.style.display = 'none'
}
})
}
}
})
</script>
</body>
</html>