diff --git a/css/app.css b/css/app.css index 5becffa..aee3453 100644 --- a/css/app.css +++ b/css/app.css @@ -95,12 +95,17 @@ body { .nav a { text-decoration: none; + color: #fff; } -.nav a:visited { +.nav a:visited,a:active { color: #fff; } +.nav .active a { + color: #1BC8F3; +} + .password-form { width: 800px; } @@ -319,30 +324,39 @@ body { } #handle1 .rs-handle { - background-color: transparent; - border: 8px solid transparent; - border-right-color: black; - margin: -6px 0px 0px 14px !important; - border-width: 6px 104px 6px 4px; + background-color: #000000; } #handle1 .rs-handle:before { display: block; content: " "; position: absolute; - height: 22px; - width: 22px; + height: 94px; + width: 94px; background: black; - right: -11px; - bottom: -11px; + right: -47px; + bottom: -47px; border-radius: 100px; + box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 2px 2px rgba(0, 0, 0, 0.35); + } #handle1 .rs-tooltip { - top: 75%; + top: 57px; font-size: 11px; + height: 40px; + width: 40px; + text-align: center; + line-height: 40px; + border-radius: 25px; + background: #000; + color: white; + display: inline-block; +box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 2px 2px rgba(0, 0, 0, 0.35); + } + #handle1 .rs-tooltip div { text-align: center; background: orange; @@ -353,14 +367,32 @@ body { } #handle1 .rs-range-color { - background-color: #DB5959; + background-color: #1BC8F3; + text-shadow: + 0 0 7px #fff, + 0 0 10px #fff, + 0 0 21px #fff, + 0 0 42px #0fa, + 0 0 82px #0fa, + 0 0 92px #0fa, + 0 0 102px #0fa, + 0 0 151px #0fa; } #handle1 .rs-path-color { - background-color: #F0C5C5; + background-color: #000; + box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 2px 2px rgba(0, 0, 0, 0.35); + } +.rs-border { + border: 1px solid #000 !important; + box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 2px 2px rgba(0, 0, 0, 0.35); +} +.rs-bg-color { + background-color: #1E1F21 !important; +} .progress-4 { width: 120px; @@ -410,25 +442,25 @@ body { border-top: 2px solid #000; } -.redio-switche{ +.redio-switche { background-color: #000; padding: 2px; box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.35), 0 2px 0 rgba(255, 255, 255, 0.15); border-radius: 5px; } -.redio-switche .btn-check:checked+.btn{ +.redio-switche .btn-check:checked+.btn { background-color: #1BC8F3; border: 0px; color: #1BC8F3; box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 2px 2px rgba(0, 0, 0, 0.35) } -.redio-switche .btn{ +.redio-switche .btn { color: #fff; } -.volume-slider-box .volume-slider{ +.volume-slider-box .volume-slider { display: inline-block; width: 45px; position: relative; @@ -528,15 +560,16 @@ body { background-image: url(../images/button.png); } -.slider-value{ +.slider-value { border: none; background: #000; box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.35), 0 2px 0 rgba(255, 255, 255, 0.15); - color: #fff; + color: #555; border-radius: 5px; + font-size: 85%; } -.slider-value:focus{ +.slider-value:focus { border: none; background: #000; box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.35), 0 2px 0 rgba(255, 255, 255, 0.15); @@ -607,12 +640,13 @@ body { .volume-ruler .cm:nth-of-type(6) { top: 83.3333%; } + .volume-ruler .cm:nth-of-type(7) { top: 100%; } -.volume-ruler .cm>span{ +.volume-ruler .cm>span { position: absolute; right: -25px; top: -7px; @@ -620,4 +654,81 @@ body { color: #555; } +/* ============ */ +.item { + position: absolute; + width: 8px; + /* border-radius: 6px; */ + background-color: #1f94ea; + -webkit-mask: linear-gradient(180deg, #000 70%, #0000 0) 0/20%; +} +.music .one { + height: 100px; + transform: translateX(-60px); +} +.music .two { + height: 53px; + transform: translateX(-40px); +} +.music .three { + height: 36px; + transform: translateX(-20px); +} +.music .four { + height: 70px; + transform: translateX(0); +} + +.music .five { + height: 30px; + transform: translateX(20px); +} + +.music .six { + height: 40px; + transform: translateX(40px); +} +.music .seven { + height: 50px; + transform: translateX(60px); +} + +@keyframes radius-animation { + 100% { + height: 10px; + /* border-radius: 50%; */ + filter: contrast(2); + } +} + + +.music .one { + animation: radius-animation .3s ease; +} +.music .two { + animation: radius-animation .6s ease; +} +.music .three { + animation: radius-animation .57s ease; +} +.music .four { + animation: radius-animation .52s ease; +} +.music .five { + animation: radius-animation .4s ease; +} +.music .six { + animation: radius-animation .3s ease; +} +.music .seven { + animation: radius-animation .7s ease; +} + + +.music .item { + animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-direction: alternate; + -webkit-animation-direction: alternate; +} \ No newline at end of file diff --git a/volume.html b/volume.html index df148a4..d9ac6b3 100644 --- a/volume.html +++ b/volume.html @@ -33,12 +33,206 @@
-
+
+
+
+
MIC 1
+
+
+
+
+
48V Phantom
+
+ + + + + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+ 0 +
+
+
+ -10 +
+
+
+ -20 +
+
+
+ -30 +
+
+
+ -40 +
+
+
+ -50 +
+
+
+ -60 +
+
+
+
+
+
+ 按钮1 +
+
+ 按钮2 +
+
+ 按钮3 +
+
+
+
+
+ +
+
+
+
+
+
+
+
+
MIC 1
+
+
+
+
+
48V Phantom
+
+ + + + + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+ 0 +
+
+
+ -10 +
+
+
+ -20 +
+
+
+ -30 +
+
+
+ -40 +
+
+
+ -50 +
+
+
+ -60 +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+
+
+
+
+
+
+ -->