1711193168@qq.com 5 anos atrás
pai
commit
07a4bc56aa

+ 1 - 1
src/views/index/components/communication/index.vue

@@ -2,7 +2,7 @@
  * @Author: WangQiBiao
  * @Date: 2019-09-25 14:10:08
  * @LastEditors: mozhuangru
- * @LastEditTime: 2019-10-12 09:24:00
+ * @LastEditTime: 2019-10-12 19:04:14
  * @Description: 在线沟通
  -->
 <template>

+ 5 - 0
src/views/index/components/entrance-guard/index.scss

@@ -36,6 +36,9 @@
       animation: bubble 20s linear infinite;
       backface-visibility: hidden;
       animation-fill-mode: forwards;
+      -webkit-animation: bubble 20s linear infinite;
+      -webkit-backface-visibility: hidden;
+      -webkit-animation-fill-mode: forwards;
       .list-item-txt{
         font-size: halfH(14);
       }
@@ -47,9 +50,11 @@
   }
   @keyframes bubble {
     0% {
+      -webkit-transform: translateY(0);
       transform: translateY(0);
     }
     100% {
+      -webkit-transform: translateY(-600px);
       transform: translateY(-600px);
     }
   }