animae.css动画 demo
Posted lxx7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了animae.css动画 demo相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css"> <style> #box{ width:200px; height: 200px; line-height: 200px; text-align: center; background-color: green; color: #fff; position: absolute; top: 500px; } </style> </head> <body> <body style="height:2000px;"> <div id="box" class="animated infinite bounceOutLeft">春天来了</div> <script src="jquery.js"></script> <script> $(function () { $(document).scroll(function () { var scrollTop = $(this).scrollTop(); console.log(scrollTop) if(scrollTop>400){ $("#box").addClass("animated slideInDown") } }) }) </script> </body> </body> </html>
以上是关于animae.css动画 demo的主要内容,如果未能解决你的问题,请参考以下文章