基于滚动位置触发CSS动画 Animate.js

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

简介

Animate.js是一个超轻(小于1kb)的jQuery AOS(滚动动画)插件,当元素出现在视口中时,它会将CSS支持的动画应用于元素。

参见:

  • 10年

如何使用它:

1.在文档中加载必要的jQuery JavaScript库。

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

2.检测目标元素的位置并在滚动到视图中时对其应用特定CSS类的功能。

  • 目标类别:目标元素的CSS选择器
  • 动画类:动画类
  • 重置打开滚动:向上滚动时重置插件
  1. $(window).on("load", function() {
  2. function AnimateOnScroll(targetClass, animationClass, resetOnScrollUp) {
  3. targetClass = "." + targetClass;
  4. jQuery(function($) {
  5. $(window).scroll(function() {
  6. var windowBottom = $(this).scrollTop() + $(this).innerHeight();
  7. $(targetClass).each(function() {
  8. /* Check the location of each desired element */
  9. var objectBottom = $(this).offset().top;
  10. if (objectBottom < windowBottom) {
  11. $(this).addClass(animationClass);
  12. } else if (resetOnScrollUp) {
  13. $(this).removeClass(animationClass);
  14. }
  15. });
  16. }).scroll();
  17. });
  18. };
  19. // override the settings here
  20. AnimateOnScroll("box", "rotate-scale-up", true)
  21. });

3.一个真实世界的例子。

  1. <div class="box">
  2. Element To Animate
  3. </div>
  1. .rotate-scale-up {
  2. -webkit-animation: rotate-scale-up .65s linear both;
  3. animation: rotate-scale-up .65s linear both
  4. }
  5.  
  6. @-webkit-keyframes rotate-scale-up {
  7. 0% {
  8. -webkit-transform: scale(1) rotateZ(0);
  9. transform: scale(1) rotateZ(0)
  10. }
  11. 50% {
  12. -webkit-transform: scale(2) rotateZ(180deg);
  13. transform: scale(2) rotateZ(180deg)
  14. }
  15. 100% {
  16. -webkit-transform: scale(1) rotateZ(360deg);
  17. transform: scale(1) rotateZ(360deg)
  18. }
  19. }
  20.  
  21. @keyframes rotate-scale-up {
  22. 0% {
  23. -webkit-transform: scale(1) rotateZ(0);
  24. transform: scale(1) rotateZ(0)
  25. }
  26. 50% {
  27. -webkit-transform: scale(2) rotateZ(180deg);
  28. transform: scale(2) rotateZ(180deg)
  29. }
  30. 100% {
  31. -webkit-transform: scale(1) rotateZ(360deg);
  32. transform: scale(1) rotateZ(360deg)
  33. }
  34. }

预览截图