jQuery插件在滚动时将CSS类添加到元素 scrollClass

  • 源码大小:6.89KB
  • 所需积分:1积分
  • 源码编号:19JP-3721
  • 浏览次数:752次
  • 最后更新:2023年07月15日
  • 所属栏目:动画
我要下载
加入收藏
本站默认解压密码:19jp.com 或 19jp_com

简介

scrollClass是一个jQuery插件,它将用户指定的CSS类添加到html元素中,并在滚动到视图中时执行回调,具有可配置的延迟、阈值和顶部偏移选项。非常适合滚动触发的元素动画或图像延迟加载。

如何使用它:

1.在html文档的末尾加载最新的jQuery库和jQuery scrollClass插件。

  1. <script src="//code.jquery.com/jquery.min.js"></script>
  2. <script src="scrollClass.js"></script>

2.使用数据滚动类以指定在元素滚动到视图中时应用于该元素的CSS类。在这种情况下,我们将使用Animate.css来创建向下滚动时的“摆动”动画效果。

  1. <div class="animated" data-scroll-class="swing">
  2. ...
  3. </div>

3.调用函数并完成。

  1. $('.animated').scrollClass();

4.使用jQuery scrollClass插件的自定义回调函数延迟加载图像。

  1. $('.image').scrollClass({
  2. callback: function () { //lazy load images
  3. var selector = $(this);
  4. var img = $("<img />").attr('src', $(this).data("img")).one('load', function() {
  5. selector.append(img);
  6. });
  7. }
  8. });

5.默认插件选项。

  1. $('.el').scrollClass({
  2.  
  3. // set CSS class after 10 milliseconds delay
  4. delay: 20,
  5.  
  6. // set CSS class when 50% of element enters the viewport
  7. threshold: 50,
  8.  
  9. // number of pixels to offset elements from the top of the window
  10. offsetTop: 0,
  11.  
  12. // reset the element after it leaves the viewport
  13. reset: false,
  14.  
  15. // the frequency at which the script runs while scrolling the page
  16. throttle: 50,
  17. });

更新日志:

2022-02-04

  • 添加了数据滚动属性、添加了油门、添加了重置

2018-05-21

  • 重构了延迟选项,添加了用于加载的侦听器,更新了版本

预览截图