如何增加 jQuery 特效的持续时间?
要增加 jQuery 特效的持续时间,设置可选 speed 参数。这些值包括 slow、fast、milliseconds 等。使用 fast 值可增加持续时间。
让我们来看一个使用 jQuery fadeIn() 方法的示例。fadeIn( ) 方法通过调整所有匹配元素的不透明度使它们逐渐显示,并在完成后触发一个可选的 callback 事件。此处是此方法使用的所有参数的说明 −
- speed − 表示三个预定义速度之一的字符串("slow"、"def" 或 "fast")或运行动画的毫秒数(例如 1000)。
- callback − 这是一个可选参数,表示动画完成后调用一次的函数。
你可以尝试运行以下代码以增加 jQuery 特效的持续时间 −
示例
<html> <head> <title>The jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script language = "javascript"> $(document).ready(function() { $("#in").click(function(){ $(".target").fadeIn( 'fast', function(){ $(".log").text('Fade In Transition Complete'); }); }); $("#out").click(function(){ $(".target").fadeOut( 'slow', function(){ $(".log").text('Fade Out Transition Complete'); }); }); }); </script> <style> p {background-color:#bca; width:200px; border:1px solid green;} </style> </head> <body> <p>Click on any of the buttons</p> <button id = "out"> Fade Out </button> <button id = "in"> Fade In</button> <div class = "target"> <img src = "/images/jquery.jpg" alt = "jQuery" /> </div> <div class = "log"></div> </body> </html>
广告