-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdemo-umd.html
97 lines (83 loc) · 1.99 KB
/
demo-umd.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>color-generate</title>
<script src="https://cdn.jsdelivr.net/npm/color-generate/dist/color-generate.umd.js"></script>
<style>
* {
box-sizing: border-box;
}
html, body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
}
.examples {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title {
font-size: 28px;
font-weight: bolder;
color: #5c6b77;
margin-bottom: 20px;
}
.wrapper {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.wrapper .primary-color {
color: #5c6b77;
font-size: 22px;
font-weight: 500;
margin-right: 20px;
}
.colors {
border-radius: 8px;
}
.colors .colors-item {
width: 400px;
height: 44px;
text-align: center;
line-height: 44px;
padding: 0 20px;
font-size: 12px;
cursor: pointer;
}
.info {
display: block;
color: #5c6b77;
font-size: 12px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="examples">
<div class="title">UMD MODULE - BROWSWER</div>
<div class="wrapper">
<div class="primary-color">主色: #099dfd</div>
</div>
<div class="colors" id="colors"></div>
<a class="info" target="_blank" href="https://color-generate-docs.sh2.agoralab.co/#/">点击了解更多</a>
</div>
</body>
<script>
const colors = ColorGenerate('#099dfd')
const colorsDom = document.getElementById('colors')
let colorsDomItems = ''
colors.map(color => {
colorsDomItems += `<div class='colors-item' style='background-color: ${color}'>${color}</div>`
})
colorsDom.innerHTML = colorsDomItems
</script>
</html>