视差和滚动幻灯片效果 Swift.js

  • 源码大小:197.81KB
  • 所需积分:1积分
  • 源码编号:19JP-3720
  • 浏览次数:753次
  • 最后更新:2023年07月14日
  • 所属栏目:动画
本站默认解压密码:19jp.com 或 19jp_com

简介

Swift.js是一个jQuery滚动动画插件,当用户向下滚动网页时,它会对背景和元素中的幻灯片应用微妙的视差效果。

如何使用它:

1.加载Swift jQuery插件的文件。

  1. <!-- jQuery Library -->
  2. <script src="/path/to/cdn/jquery.min.js"></script>
  3.  
  4. <!-- Swift Plugin -->
  5. <link rel="stylesheet" href="/path/to/css/swift.css" />
  6. <script src="/path/to/js/swift.js"></script>

2.将视差滚动效果应用于背景图像。

  1. <div id="header">
  2. ...
  3. </div>
  4.  
  5. <div id="footer">
  6. ...
  7. </div>
  1. #header, #footer {
  2. background: url(bg.jpg);
  3. height: 400px;
  4. }
  1. $('#header').swift({
  2. 'type': 'bg',
  3. 'positionStart': '-200',
  4. 'length': '200'
  5. });
  6.  
  7. $('#footer').swift({
  8. 'type': 'bg',
  9. 'positionStart': '-500',
  10. 'length': '200'
  11. });

3.在向下滚动时,将可配置的幻灯片应用于任何DOM元素。请注意,每个DOM元素都必须相对定位。

  1. $('.myElement').swift({
  2. 'type': 'dom',
  3. 'axis': 'left',
  4. 'positionStart': 'left',
  5. 'positionEnd': '50',
  6. 'length': '100',
  7. 'delay': '50',
  8. 'links': 'after'
  9. });

4.所有默认选项。

  1. $('.myElement').swift({
  2.  
  3. // or 'bg'
  4. type: "dom",
  5.  
  6. // %' : 100vh
  7. // '%%' : 200vh
  8. // or an integer
  9. duration: "%",
  10.  
  11. // left | right | top | bottom | {integer value}
  12. positionStart: "1"
  13.  
  14. // position after the animation
  15. positionEnd: "0",
  16.  
  17. // opacity before/after the animation
  18. opacityStart: "1",
  19. opacityEnd: "1",
  20.  
  21. // %' : 100vh
  22. // '%%' : 200vh
  23. // or an integer
  24. delay: "auto",
  25.  
  26. // length of the animation
  27. length: 0,
  28.  
  29. // or 'left'
  30. axis: 'top',
  31.  
  32. // after | both | before
  33. // if you want to set more than one animation on the same element, you must add this parameter;
  34. // says if there is another animation "after", "before", or "both before and after"
  35. links: undefined,
  36.  
  37. });

预览截图