diff options
author | LarsVomMars | 2021-01-29 11:10:25 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-29 11:10:25 +0100 |
commit | 43bee3b95a6a8f06b53b45c908e3fd6e69f17089 (patch) | |
tree | 6d2c621c198a37fdfaaa7c018237c9ec006752c8 /profile/public/index.html | |
parent | 08adc7079833e15f5caf4594037bbf580644411b (diff) |
Cropper, save and control buttons, rework
Diffstat (limited to 'profile/public/index.html')
-rw-r--r-- | profile/public/index.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/profile/public/index.html b/profile/public/index.html index e6f2e6c..a87fb77 100644 --- a/profile/public/index.html +++ b/profile/public/index.html @@ -34,6 +34,14 @@ </main> <div class="popup"> <img id="popup-img" src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" alt="Picture" /> + <button class="pure-button pure-button-primary" id="save-btn">Übernehmen</button> + <label for="rotation-slider">Drehen</label> + <input id="rotation-slider" type="range" min="-180" max="180" value="0"> + <div class="control-btns"> + <button class="pure-button pure-button-primary" id="rot45" data-value="-45" data-rot="true">45</button> + <button class="pure-button pure-button-primary" id="nrot45" data-value="45" data-rot="true">-45</button> + <button class="pure-button pure-button-primary" id="norm" data-value="0" data-rot="false">0</button> + </div> </div> <script |