jQuery 顺序动画库 画布动画

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

简介

Canvas Animation是一个jQuery插件,它使用JavaScript和CSS样式将可控的连续动画应用于单个或多个元素。

如何使用它:

1.将jQuery库(slim build)和jQuery Canvas Animation插件的JavaScript&Stylesheet插入到html文件中。

  1. <link href="jquery.canvas-animation.min.css" rel="stylesheet">
  2. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  3. integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  4. crossorigin="anonymous"></script>
  5. <script src="jquery.canvas-animation.min.js"></script>

2.创建一组要设置动画的元素。

  1. <div id="canvas" class="demo">
  2. <div class="square red"></div>
  3. <div class="square green"></div>
  4. <div class="square blue"></div>
  5. </div>

3.通过向元素添加CSS类和持续时间来创建循序渐进的动画,如下所示:

  1. var myConf = {
  2. steps : [
  3. {
  4. addClass : 'ca-1',
  5. duration : 800
  6. },
  7. {
  8. addClass : 'ca-2',
  9. duration : 800
  10. },
  11. {
  12. addClass : 'ca-3',
  13. duration : 800
  14. },
  15. {
  16. addClass : 'ca-4',
  17. duration : 500
  18. }
  19. ]
  20. };

4.将顺序动画应用于元素并完成。

  1. $('#canvas').canvasAnimation(myConf);

5.用于自定义顺序动画的更多配置。

  1. $('#canvas').canvasAnimation({
  2.  
  3. // starts the animation after this timeout
  4. // 0 = starts immediately
  5. timeout: 0,
  6.  
  7. // reset duration in milliseconds
  8. resetDuration: 500,
  9.  
  10. // infinite loop
  11. infinity: true,
  12.  
  13. // enable autoplay
  14. autoplay : true,
  15.  
  16. // enable controls
  17. controls: true,
  18.  
  19. editor: {
  20. enable: false, // if true: show editor on page
  21. wrapper: '.jca-editor-container' // editor wrapper class
  22. },
  23.  
  24. // use icons from an icon framework instead of css icons
  25. useIcons: false,
  26.  
  27. // icons
  28. icons: {
  29. backward: '<i class="fas fa-step-backward"></i>',
  30. play: '<i class="fas fa-play"></i>',
  31. pause: '<i class="fas fa-pause"></i>',
  32. stop: '<i class="fas fa-stop"></i>',
  33. forward: '<i class="fas fa-step-forward"></i>',
  34. expand: '<i class="fas fa-expand"></i>',
  35. editor: '<i class="fas fa-edit"></i>'
  36. },
  37.  
  38. // class of controls wrapper
  39. controlsWrapper: '.controls',
  40.  
  41. // custom controls
  42. controlsTemplate:
  43. '<div class="controls">' +
  44. '<div class="backward #BACKWARD#"></div>' +
  45. '<div class="play #PLAY#"></div>' +
  46. '<div class="pause #PAUSE#"></div>' +
  47. '<div class="reset #RESET#"></div>' +
  48. '<div class="forward #FORWARD#"></div>' +
  49. '<div class="fullscreen #FULLSCREEN#"></div>' +
  50. '</div>',
  51.  
  52. // class of step backward button
  53. backwardButton: '.backward',
  54. // class of step forward button
  55. forwardButton: '.forward',
  56.  
  57. // class of play button
  58. playButton: '.play',
  59.  
  60. // class of pause button
  61. pauseButton: '.pause',
  62.  
  63. // class of reset button
  64. resetButton: '.reset',
  65.  
  66. // class of reset button
  67. stopButton: '.jca-stop',
  68.  
  69. // class of expand button
  70. expandButton: '.jca-expand',
  71.  
  72. // class of edit button
  73. editorButton: '.jca-editor',
  74.  
  75. // class of goto button / add data-step="step-name"
  76. gotoButton: '.jca-goto',
  77.  
  78. // CSS class if the animation is done
  79. classDone: 'done',
  80.  
  81. // CSS class if the animation is paused
  82. classWait: 'wait',
  83.  
  84. // CSS class if user clicked forward
  85. classForward: 'forward',
  86.  
  87. // CSS class if user clicked backward
  88. classBackward: 'backward',
  89.  
  90. // class of elements wrapper
  91. classWrap: 'canvas-animation',
  92. });

7. Useful callback functions which will be fired when the animation starts or is paused/finished.

  1. $('#canvas').canvasAnimation({
  2.  
  3. // called before first animation step
  4. onPlay: null,
  5.  
  6. // called after last animation step
  7. onDone: null,
  8.  
  9. // called if classWait was added
  10. onWait: null
  11. });

更新日志:

v2.1.0 (2021-11-14)

  • Added gotoButton in options

v2.0.0 (2018-08-11)

  • Added width, height, top, left in px on editor.

2018-05-06

  • Fixed wrong css class in less and scss.
  • Changed config names.

2018-04-27

  • Added step forward / backward feature.

2018-04-22

  • Added "Pause instantly" feature.

预览截图