soiz1 commited on
Commit
0dba846
·
verified ·
1 Parent(s): 2d041a3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +113 -19
index.html CHANGED
@@ -1,19 +1,113 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ja">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>画像編集ツール</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="styles.css">
9
+ </head>
10
+ <body>
11
+ <div class="container">
12
+ <h1>画像編集ツール</h1>
13
+
14
+ <div class="upload-section">
15
+ <input type="file" id="image-upload" accept="image/*">
16
+ <label for="image-upload" class="upload-btn">画像を選択</label>
17
+ </div>
18
+
19
+ <div class="editor-container">
20
+ <div class="image-preview">
21
+ <canvas id="image-canvas"></canvas>
22
+ </div>
23
+
24
+ <div class="controls">
25
+ <div class="control-group">
26
+ <h3>基本調整</h3>
27
+ <div class="slider-control">
28
+ <label for="brightness">明るさ</label>
29
+ <input type="range" id="brightness" min="-100" max="100" value="0">
30
+ <span id="brightness-value">0</span>
31
+ </div>
32
+
33
+ <div class="slider-control">
34
+ <label for="contrast">コントラスト</label>
35
+ <input type="range" id="contrast" min="-100" max="100" value="0">
36
+ <span id="contrast-value">0</span>
37
+ </div>
38
+
39
+ <div class="slider-control">
40
+ <label for="saturation">飽和度</label>
41
+ <input type="range" id="saturation" min="-100" max="100" value="0">
42
+ <span id="saturation-value">0</span>
43
+ </div>
44
+ </div>
45
+
46
+ <div class="control-group">
47
+ <h3>トーン調整</h3>
48
+ <div class="slider-control">
49
+ <label for="shadows">シャドウ</label>
50
+ <input type="range" id="shadows" min="-100" max="100" value="0">
51
+ <span id="shadows-value">0</span>
52
+ </div>
53
+
54
+ <div class="slider-control">
55
+ <label for="highlights">ハイライト</label>
56
+ <input type="range" id="highlights" min="-100" max="100" value="0">
57
+ <span id="highlights-value">0</span>
58
+ </div>
59
+ </div>
60
+
61
+ <div class="control-group">
62
+ <h3>HSL調整</h3>
63
+ <div class="slider-control">
64
+ <label for="hue">色相</label>
65
+ <input type="range" id="hue" min="-180" max="180" value="0">
66
+ <span id="hue-value">0</span>
67
+ </div>
68
+
69
+ <div class="slider-control">
70
+ <label for="hue-saturation">HSL 飽和度</label>
71
+ <input type="range" id="hue-saturation" min="-100" max="100" value="0">
72
+ <span id="hue-saturation-value">0</span>
73
+ </div>
74
+
75
+ <div class="slider-control">
76
+ <label for="lightness">HSL 明度</label>
77
+ <input type="range" id="lightness" min="-100" max="100" value="0">
78
+ <span id="lightness-value">0</span>
79
+ </div>
80
+ </div>
81
+
82
+ <div class="control-group">
83
+ <h3>RGBカーブ</h3>
84
+ <div class="slider-control">
85
+ <label for="red-curve">赤</label>
86
+ <input type="range" id="red-curve" min="-100" max="100" value="0">
87
+ <span id="red-curve-value">0</span>
88
+ </div>
89
+
90
+ <div class="slider-control">
91
+ <label for="green-curve">緑</label>
92
+ <input type="range" id="green-curve" min="-100" max="100" value="0">
93
+ <span id="green-curve-value">0</span>
94
+ </div>
95
+
96
+ <div class="slider-control">
97
+ <label for="blue-curve">青</label>
98
+ <input type="range" id="blue-curve" min="-100" max="100" value="0">
99
+ <span id="blue-curve-value">0</span>
100
+ </div>
101
+ </div>
102
+
103
+ <button id="reset-btn" class="action-btn">リセット</button>
104
+ <button id="download-btn" class="action-btn">ダウンロード</button>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+ <!-- CamanJSライブラリ -->
110
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/camanjs/4.1.2/caman.full.min.js"></script>
111
+ <script src="script.js"></script>
112
+ </body>
113
+ </html>