jQuery 中有哪些方法可以用来实现特效?
jQuery 效果方法用于创建自定义动画效果。以下是 jQuery 中使用的一些提供特效的方法:
序号 | 方法 | 描述 |
1 | animate() | 对选定的元素进行自定义动画 |
2 | clearQueue() | 移除选定元素中剩余的排队函数 |
3 | delay() | 为选定元素上所有排队函数设置延迟 |
4 | dequeue() | 移除队列中的下一个函数,然后执行该函数 |
5 | fadeIn() | 淡入选定的元素 |
6 | fadeOut() | 淡出选定的元素 |
7 | fadeTo() | 将选定元素淡入/淡出到给定的不透明度 |
8 | fadeToggle() | 在 fadeIn() 和 fadeOut() 方法之间切换 |
9 | finish() | 停止、移除并完成选定元素的所有排队动画 |
让我们看一个使用 jQuery 方法 animate() 的示例,该方法可以为任何元素设置动画。
您可以尝试运行以下代码,了解如何使用 jQuery 方法 animate() 为按钮设置动画:
示例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button1").click(function(){ $("#shape").animate({width: "300px"}); }); $("#button2").click(function(){ $("#shape").animate({width: "150px"}); }); }); </script> </head> <body> <button id="button1">Increase width</button> <button id="button2">Original width</button> <div id="shape" style="background:rgb(73,159,255);height:150px;width:150px;margin:30px;"></div> </body> </html>
广告