Explorar el Código

notice opacity

DIYgod hace 8 años
padre
commit
6bf1975bf2
Se han modificado 3 ficheros con 3 adiciones y 6 borrados
  1. 0 0
      dist/DPlayer.min.js
  2. 0 0
      dist/DPlayer.min.js.map
  3. 3 6
      src/DPlayer.js

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/DPlayer.min.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/DPlayer.min.js.map


+ 3 - 6
src/DPlayer.js

@@ -1112,19 +1112,16 @@ class DPlayer {
         };
     }
 
-    notice (text, time) {
+    notice (text, time = 2000, opacity = 0.8) {
         const noticeEle = this.element.getElementsByClassName('dplayer-notice')[0];
         noticeEle.innerHTML = text;
-        noticeEle.style.opacity = 1;
+        noticeEle.style.opacity = opacity;
         if (this.noticeTime) {
             clearTimeout(this.noticeTime);
         }
-        if (time && time < 0) {
-            return;
-        }
         this.noticeTime = setTimeout(() => {
             noticeEle.style.opacity = 0;
-        }, time || 2000);
+        }, time);
     }
 
     destroy () {

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio