首页 > 其他 > 详细

Vue一行代码设置递增过渡动画

时间:2021-06-02 15:27:03      阅读:30      评论:0      收藏:0      [点我收藏+]


原始的CSS方式

.weather_list li:nth-child(1) {
        transition-delay: 0s;
      }
      .weather_list li:nth-child(2) {
        transition-delay: 100ms;
      }
      .weather_list li:nth-child(3) {
        transition-delay: 200ms;
      }
      .weather_list li:nth-child(4) {
        transition-delay: 300ms;
      }
      .weather_list li:nth-child(5) {
        transition-delay: 400ms;
      } 

技术分享图片

通过bind指令和transition-delay的属性

 :style="{‘transition-delay‘: index*100+‘ms‘ }"

Vue一行代码设置递增过渡动画

原文:https://www.cnblogs.com/Code-Is-Fun/p/14840083.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!