元素进入视口时设置动画 故事线

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

简介

Storyline是jQuery的一个基于滚动的动画库,它在元素进入视口时将自定义CSS样式或类应用于元素。

非常适合讲故事、单页滚动网站和登录页。

参见:

  • 10个最佳滚动触发的JavaScript动画插件

如何使用它:

1.要开始,请在加载最新的jQuery库后包含主要的JavaScript故事线.js。

  1. <script src="/path/to/cdn/jquery.min.js"></script>
  2. <script src="/path/to/js/storyline.js"></script>

2.在目标元素(本例中的框)上初始化插件,并在它们滚动进入或移出视口时将您自己的CSS样式(或类)应用于它们。

  1. <section class="frame1">
  2. <h1>Example</h1>
  3. <div class="box">
  4. </div>
  5. </section>
  6. <section class="frame2">
  7. <h1>Keep Scrolling</h1>
  8. <div class="box">
  9. </div>
  10. </section>
  11. <section class="frame3">
  12. <h1>Frame 3</h1>
  13. <div class="box">
  14. </div>
  15. </section>
  1. // Cache objects
  2. var objectsCache = {
  3. frame1: $('.frame1 > .box'),
  4. frame2: $('.frame2 > .box'),
  5. frame3: $('.frame3 > .box'),
  6. };
  7.  
  8. // Initialize the plugin
  9. $.storyline({
  10. frames: {
  11. '.frame1' : {
  12. onActive: function(coords, event) {
  13. objectsCache.frame1.css({
  14. transform: `scale(${coords.percent.screenPlayed/10 + 0.8})`
  15. });
  16. }
  17. },
  18. '.frame2' : {
  19. onActive: function(coords, event){
  20. objectsCache.frame2.css({
  21. transform: `rotate(${coords.percent.frameUnCentered}deg) scale(0.8)`
  22. });
  23. }
  24. },
  25. '.frame4' : {
  26. onEnter: function() {
  27. objectsCache.frame4.addClass('active');
  28. },
  29. onLeave: function() {
  30. objectsCache.frame4.removeClass('active');
  31. },
  32. scrollIntoView: true,
  33. },
  34. }
  35. });

3.生成导航菜单以在这些帧之间导航。可以是布尔值,也可以是数组。可选择的

  1. $.storyline({
  2. frames: {
  3. // frames here
  4. },
  5. buildMenu: ['1', '2', '3', '4', '5', '6'],
  6. menuSpeed: 3000, // default: 1500
  7. });

4.启用开发模式。默认值:false。

  1. $.storyline({
  2. frames: {
  3. // frames here
  4. },
  5. guide: true
  6. });

5.设置当前帧与页面顶部之间的距离。默认值:0。

  1. $.storyline({
  2. frames: {
  3. // frames here
  4. },
  5. frameTop: 20
  6. });

6.确定是否忽略警告。默认值:true。

  1. $.storyline({
  2. frames: {
  3. // frames here
  4. },
  5. ignoreWarnings: false
  6. });

7.设置框架公差。可用于更松散地触发onEnter和onLeave操作。默认值:20。

  1. $.storyline({
  2. frames: {
  3. // frames here
  4. },
  5. tolerance: 50
  6. });

更新日志:

2022-01-10

  • JS更新

2022-01-02

  • 改进的菜单性能

2021-08-10

  • 添加了scrollIntoView选项

2021-08-10

  • 字体显示修复

2021-08-09

  • 使用通用jQuery库;添加了故事情节.min.js

2021-08-06

  • 现在在配置对象中设置日志级别

 

预览截图