2a09d1a4
liuqimichale
添加宜春 天水 宣化
|
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{fontName}}</title>
<link href="css/videojs-icons.css" rel="stylesheet">
<style>
body {
text-align: center;
}
header {
/*text-align: center;*/
}
.preview {
display: inline-block;
border: 1px solid #ccc;
text-align: center;
width: 150px;
margin: 10px;
padding: 10px;
}
.preview-icon {
width: 100%;
font-size: 200%;
}
</style>
</head>
<body>
<header>
<h1>{{fontName}} Icons</h1>
<p>All icons prefixed by <code>vjs-icon-</code></p>
</header>
{{#each names}}
<div class="preview">
<div class="preview-icon">
<span class="vjs-icon-{{this}}"></span>
</div>
<span>{{this}}</span>
</div>
{{/each}}
</body>
</html>
|