forked from xdan/jodit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.html
53 lines (52 loc) · 1.16 KB
/
icons.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jodit Test Document</title>
<link rel="stylesheet" href="./build/jodit.min.css">
<script src="./build/jodit.js"></script>
</head>
<body>
<div id="box"></div>
<script>
const result = ['<div class="items">'];
for (const key in Jodit.modules.Icon.icons) {
result.push(`<div class="item">
<div class="item-title">${key}</div>
<div class="item-icon">
${Jodit.modules.Icon.get(key)}
</div>
</div>`);
}
result.push(`</div>`)
result.push(`<div>Icons: ${Object.keys(Jodit.modules.Icon.icons).length}</div>`)
box.innerHTML = result.join('');
</script>
<style>
.items {
display: flex;
flex-wrap: wrap;
}
.item {
width: 30px;
margin: 5px;
border: 1px solid #ccc;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.item-title {
font-size: 8px;
word-break: break-all;
}
.item-icon {
width: 24px;
height: 24px;
}
</style>
</body>
</html>