轮播图指示器一点一点加载动效

轮播图指示器一点一点加载动效

示例效果如下所示

轮播图指示器一点一点加载动效_第1张图片

示例代码




.lunbo-point-tab {
    text-align: center;
}    
.lunbo-point-tab .el-carousel__item h3 {
    color: #475669;
    font-size: 14px;
    opacity: 0.75;
    line-height: 200px;
    margin: 0;
  }
.lunbo-point-tab .el-carousel__item:nth-child(2n) {
    background-color: #42b983;
  }
.lunbo-point-tab .el-carousel__item:nth-child(2n+1) {
    background-color: #abcdef;
  }   
 .lunbo-point-tab .el-carousel__indicator--horizontal.is-active::after {
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   background: red;
   transform: scaleX(0);
   animation: progress 6s linear 0s infinite;
   transform-origin: left;
   margin-top: -2px;
 }
@keyframes progress {
   0% {
       transform: scaleX(0);
   }
   to {
       transform: scaleX(1);
   }
}

核心的css代码,就是如下所示,主要结合伪类实现,css3中的变换transform以及动画关键帧来实现

.lunbo-point-tab .el-carousel__indicator--horizontal.is-active::after {
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   background: red;
   transform: scaleX(0);
   animation: progress 6s linear 0s infinite;
   transform-origin: left;   // 旋转变换的基点,从左边开始
   margin-top: -2px;
 }
@keyframes progress {
   0% {
       transform: scaleX(0);
   }
   to {
       transform: scaleX(1);
   }
}

轮播图指示器一点一点加载动效,主要结合给激活指示元素添加伪元素,并结合css3动画关键帧去实现,需要注意的是,需要给激活元素样式添加margin-top:-高度值,才会与原元素保持重合

旋转基点:通过transform-origin:left/center/right属性进行控制

轮播图指示器一点一点加载动效_第2张图片

轮播图指示器一点一点加载动效_第3张图片

轮播图指示器一点一点加载动效_第4张图片

你可能感兴趣的:(vue.js,前端,javascript,ecmascript,前端框架)