-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (63 loc) · 2.4 KB
/
index.html
File metadata and controls
72 lines (63 loc) · 2.4 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>ColorChart</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="container">
<div class="header">
<h1>ColorChart</h1>
</div>
<!-- グラデーションチャートセクション -->
<div class="section">
<h2>Gradation Chart(256)</h2>
<button class="fullscreen-btn" onclick="showFullscreen('gradient')">FullScreen</button>
<div class="gradient-chart" id="gradientChart">
<div class="gradient-strip cyan-to-white">
</div>
<div class="gradient-strip magenta-to-white">
</div>
<div class="gradient-strip yellow-to-white">
</div>
<div class="gradient-strip red-to-white">
</div>
<div class="gradient-strip green-to-white">
</div>
<div class="gradient-strip blue-to-white">
</div>
<div class="gradient-strip cyan-to-black">
</div>
<div class="gradient-strip magenta-to-black">
</div>
<div class="gradient-strip yellow-to-black">
</div>
<div class="gradient-strip red-to-black">
</div>
<div class="gradient-strip green-to-black">
</div>
<div class="gradient-strip blue-to-black">
</div>
</div>
</div>
<div class="separator"></div>
<!-- 24色カラーチャートセクション -->
<div class="section">
<h2>Color Chart</h2>
<button class="fullscreen-btn" onclick="showFullscreen('colors')">FullScreen</button>
<div class="color-chart" id="colorChart">
<!-- 24色の色見本がJavaScriptで生成される -->
</div>
</div>
</div>
<!-- 全画面オーバーレイ -->
<div class="fullscreen-overlay" id="fullscreenOverlay">
<div class="fullscreen-content" id="fullscreenContent">
<!-- 全画面コンテンツがここに表示される -->
</div>
</div>
<script src="index.js"></script>
</body>
</html>