-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.4 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
51
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Lottie アニメーションと色一覧</title>
<style>
#drop-area {
border: 2px dashed #ccc;
padding: 20px;
text-align: center;
}
#color-table {
margin-top: 20px;
border-collapse: collapse;
}
#color-table td {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
}
#animation {
width: 250px;
height: 250px;
margin: auto;
display: none;
background-image: linear-gradient(45deg, #C0C0C0 25%, transparent 25%, transparent 75%, #C0C0C0 75%, #C0C0C0), linear-gradient(45deg, #C0C0C0 25%, transparent 25%, transparent 75%, #C0C0C0 75%, #C0C0C0);
background-size: 20px 20px;
background-position: 0 0, 10px 10px;
}
.color-box {
width: 50px;
height: 50px;
margin: auto;
}
</style>
</head>
<body>
<div id="drop-area">ここにファイルをドラッグアンドドロップ</div>
<div id="animation"></div>
<table id="color-table">
</table>
<button id="reset-button">消去</button>
<button id="save-button">ファイルとして保存</button>
<script src="./js/lottie-5.12.2.min.js"></script>
<script src="./js/logic.js"></script>
</body>
</html>