diff options
author | Orangerot <purple@orangerot.dev> | 2024-12-07 20:24:16 +0100 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-12-07 20:24:16 +0100 |
commit | 4ec96e68d137614172c86d162adfa6f676b0eef9 (patch) | |
tree | 0e9e14a3dae4d32f6968a1fd1fc76a2b62439199 /index.html | |
parent | 686e314d6a554c1a73a18438b0219207c97b470d (diff) |
feat: download canvas image
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -44,10 +44,10 @@ <h1 class="title">Imagine</h1> <h2 class="subtitle">Image Editor</h2> - <button class="button is-primary"> + <button id="save" class="button is-primary"> Save Image </button> - <button class="button is-secondary"> + <button id="share" class="button is-secondary"> Share </button> @@ -59,7 +59,7 @@ <label class="label">Brightness</label> <div class="control"> <input type="range" - id="slider0" + id="brightness" class="slider is-fullwidth is-primary" min="0" max="100" value="50" step="1"> </div> @@ -68,7 +68,7 @@ <label class="label">Saturation</label> <div class="control"> <input type="range" - id="slider0" + id="saturation" class="slider is-fullwidth is-primary" min="0" max="100" value="50" step="1"> </div> @@ -77,7 +77,7 @@ <label class="label">Contrast</label> <div class="control"> <input type="range" - id="slider0" + id="contrast" class="slider is-fullwidth is-primary" min="0" max="100" value="50" step="1"> </div> @@ -95,10 +95,10 @@ <div class="notification is-fullwidth is-hidden-desktop" style="z-index: 200"> <span id="settings"></span> <a href="#top" class="delete"></a> - <button class="button is-primary"> + <button id="save" class="button is-primary"> Save Image </button> - <button class="button is-secondary"> + <button id="share" class="button is-secondary"> Share </button> |