Browse Source

beautify paint

schtonn 2 years ago
parent
commit
328ddefde7
2 changed files with 70 additions and 27 deletions
  1. 28 14
      js/paint.js
  2. 42 13
      paint/index.html

+ 28 - 14
js/paint.js

@@ -84,8 +84,8 @@ function getMap() {
         return;
     }
     working = true;
-    if (curVer != 0) document.getElementById('upload').classList.add('disabled')
-    else document.getElementById('upload').classList.remove('disabled')
+    if (curVer != 0) document.getElementById('upload').classList.add('disabled'),document.getElementById('rbtn').classList.remove('disabled')
+    else document.getElementById('upload').classList.remove('disabled'),document.getElementById('rbtn').classList.add('disabled')
     if (curVer >= stopVer) {
         if (!stopped) document.getElementById('lbtn').classList.add('disabled'), stopped = true;
         else {
@@ -186,22 +186,18 @@ $(document).ready(function () {
         var box = document.getElementById(obj);
         var hd = box.children[0];
         var hdt = box.children[1];
+        var mouseMoved = false;
         hd.onmousedown = function (event) {
+            mouseMoved = false;
             var event = event || window.event;
             var leftval = event.clientX - this.offsetLeft;
             document.onmousemove = function (event) {
+                mouseMoved = true;
                 var event = event || window.event;
                 hd.style.left = event.clientX - leftval + "px";
-
                 var far = parseInt(hd.style.left);
-
-                if (far < 0) {
-                    hd.style.left = 0;
-                }
-                else if (far > 180) {
-                    hd.style.left = 180 + "px";
-                }
-
+                if (far < 0) hd.style.left = 0;
+                else if (far > 180) hd.style.left = 180 + "px";
                 hdt.style.width = hd.style.left;
                 var result = parseInt(parseInt(hdt.style.width) / 180 * num);
                 document.getElementById(obj + '-text').innerHTML = result;
@@ -214,6 +210,8 @@ $(document).ready(function () {
         }
         box.onclick = function (event) {
             var event = event || window.event;
+            if (mouseMoved) { mouseMoved = false; return false; }
+            mouseMoved = false;
             var boxWidth = event.clientX - this.offsetLeft - document.getElementById('tools').offsetLeft;
             if (boxWidth > 180) boxWidth = 180;
             if (boxWidth < 0) boxWidth = 0;
@@ -224,6 +222,15 @@ $(document).ready(function () {
         }
     }
 
+    function changeSlider(obj, num, newVal) {
+        var box = document.getElementById(obj);
+        var hd = box.children[0];
+        var hdt = box.children[1];
+        hd.style.left = newVal / num * 180 + 'px';
+        hdt.style.width = hd.style.left;
+        document.getElementById(obj + '-text').innerHTML = newVal;
+    }
+
     slider('box-r', 255);
     slider('box-g', 255);
     slider('box-b', 255);
@@ -294,12 +301,15 @@ $(document).ready(function () {
     }
 
     toggleButton.onclick = function () {
-        var result = $('#tools')
+        var tool = $('#tools')
+        var controls = $('#controls')
         if (showTools) {
-            for (let i = 0; i < result.length; i++)result[i].style.setProperty('transform', '');
+            tool[0].style.setProperty('transform', '');
+            controls[0].style.setProperty('transform', '');
             showTools = 0;
         } else {
-            for (let i = 0; i < result.length; i++)result[i].style.setProperty('transform', 'scale(80%) translate(170px,520px)');
+            tool[0].style.setProperty('transform', 'scale(80%) translate(170px,530px)');
+            controls[0].style.setProperty('transform', 'rotate(-30deg) translate(-370px,50px)');
             showTools = 1;
         }
     }
@@ -329,6 +339,10 @@ $(document).ready(function () {
         colorItem.onclick = function () {
             lcolor = colors[i]
             nowColor.style.backgroundColor = colors[i]
+            changeSlider('box-r',255,parseInt(colorItem.style.backgroundColor.split(',')[0].split('(')[1]))
+            changeSlider('box-g',255,parseInt(colorItem.style.backgroundColor.split(',')[1]))
+            changeSlider('box-b',255,parseInt(colorItem.style.backgroundColor.split(',')[2]))
+            updateCol();
         }
         if (i === 0) {
             colorItem.style.border = '1px solid #000000'

+ 42 - 13
paint/index.html

@@ -1,7 +1,7 @@
 <head>
     <link rel="manifest" href="/site.webmanifest">
-    <!-- <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
-        integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> -->
+    <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
+        integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
     <link rel="stylesheet" href="../css/bootstrap.min.css"
         integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
     <link rel="stylesheet" href="../css/style.css">
@@ -17,36 +17,62 @@
             margin-bottom: 10px;
             cursor: pointer;
             width: 180px;
-            height: 3px;
-            background-color: #bdbdbd;
+            height: 7px;
+            background-color: rgba(215, 215, 215, 0.7);
             position: relative;
             vertical-align: middle;
         }
 
         .box .hd {
-            width: 18px;
-            height: 18px;
-            background-color: #56a3fc;
+            width: 16px;
+            height: 16px;
+            background-color: rgba(215, 215, 215, 1);
             border-radius: 6px;
             position: absolute;
             left: 0;
-            top: -8px;
+            top: -6px;
             cursor: pointer;
             margin: 0;
             transform: translateX(-9px);
-            z-index: 1;
+            z-index: 2;
         }
 
         .box .hdt {
             position: absolute;
             top: 0;
             left: 0;
-            height: 3px;
+            height: 7px;
             width: 0;
-            background-color: #56a3fc;
             margin: 0;
         }
 
+        #box-r .hd {
+            background-image: linear-gradient(60deg, #e57070, rgba(215, 215, 215, 0.5));
+            border: 1px solid #ef2929
+        }
+
+        #box-g .hd {
+            background-image: linear-gradient(60deg, #5dbd79, rgba(215, 215, 215, 0.5));
+            border: 1px solid #22b14c
+        }
+
+        #box-b .hd {
+            background-image: linear-gradient(60deg, #91b0d2, rgba(215, 215, 215, 0.5));
+            border: 1px solid #729fcf
+        }
+
+        #box-r .hdt {
+            background-image: linear-gradient(60deg, #eb9696, #ef2929);
+        }
+
+        #box-g .hdt {
+            background-image: linear-gradient(60deg, #88be98, #22b14c);
+        }
+
+        #box-b .hdt {
+            background-image: linear-gradient(60deg, #b8c7d7, #729fcf);
+        }
+
         .box-text {
             user-select: none;
             width: fit-content;
@@ -120,6 +146,7 @@
         }
 
         .color-item {
+            cursor: pointer;
             height: 20px;
             width: 20px;
         }
@@ -159,6 +186,8 @@
             width: 700px;
             padding-left: 3px;
             padding-right: 5px;
+            transition-duration: 0.3s;
+            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
             border: 5px solid rgba(15, 15, 15, 0.1);
             border-radius: 15px;
             background-color: rgba(15, 15, 15, 0.1);
@@ -219,10 +248,10 @@
         <button class="btn btn-danger" id="clear" onclick="tryClear()"><span class="glyphicon glyphicon-ban-circle"
                 aria-hidden="true"></span>&nbsp;清空</button>
         <a id="lbtn" tabindex="0" class="btn btn-default noshadow" onclick="prevVer()">
-            <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
+            <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"><kbd>A</kbd></span>
         </a>
         <a id="rbtn" tabindex="0" class="btn btn-default noshadow" onclick="nextVer()">
-            <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
+            <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"><kbd>D</kbd></span>
         </a>
         <span id="version" style="margin-right:auto"></span>
     </div>