-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (41 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<h1><rainbow-line/> playground</h1>
<h2>default settings</h2>
<rainbow-line></rainbow-line>
<div class="vspace"></div>
<h2>with shadow</h2>
<div class="shadow-container">
<rainbow-line slice-cycle-time="5" cycle-direction="left"></rainbow-line>
<rainbow-line slice-cycle-time="5" cycle-direction="left" class="shadow"></rainbow-line>
</div>
<h2>pixelated</h2>
<rainbow-line class="bulky" color-slice-width="0.03"></rainbow-line>
<div class="vspace"></div>
<h2>custom cycle-colors #1</h2>
<rainbow-line
cycle-colors="#023 #445 #863 #b85 #fa3 #b85 #863 #445 #234"
cycle-colors-repeat="2"
cycle-direction="left"
color-slice-width="0.02"
slice-cycle-time="5"
></rainbow-line>
<div class="vspace"></div>
<h2>custom cycle-colors #2</h2>
<rainbow-line
cycle-colors="black white"
cycle-colors-repeat="0.01"
slice-cycle-time="10"
color-slice-width="2"
cycle-direction="right"
></rainbow-line>
<script type="module" src="main.js"></script>
<script type="module" src="src/rainbow-line.js"></script>
</body>
</html>