带颜色变化动画的jQuery时间轴代码

带颜色变化动画的jQuery时间轴代码-精品资源网
带颜色变化动画的jQuery时间轴代码
此内容为免费资源,请登录后查看
0
免费资源

带颜色变化动画的jQuery时间轴代码

一款带颜色变化动画的jQuery旅行者竖直时间轴代码。

js代码

<script>
function customWayPoint(className, addClassName, customOffset) {
  var waypoints = $(className).waypoint({
    handler: function(direction) {
      if (direction == \"down\") {
        $(className).addClass(addClassName);
      } else {
        $(className).removeClass(addClassName);
      }
    },
    offset: customOffset
  });
}

var defaultOffset = \'50%\';

for (i = 0; i < 17; i++) {
  customWayPoint(\'.timeline__item--\' + i, \'timeline__item-bg\', defaultOffset);
}
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容