阅读(1407) (1)

jQuery.fx.interval

2016-02-24 15:15:14 更新

返回值:NumberjQuery.fx.interval

V1.4.3概述

设置动画的显示帧速。

示例

描述: 帧速设置为100ms

jQuery 代码:

<!DOCTYPE html><html><head>  <style>    div { width:50px; height:30px; margin:5px; float:left;          background:green; }    </style>  <script src="https://atts.zijiebao.com/attachments/image/cimg/div><script>jQuery.fx.interval = 100;$("input").click(function(){  $("div").toggle( 3000 );});  </script></body></html>