文字
分享

返回值:NumberjQuery.fx.interval

V1.4.3概述

设置动画的显示帧速。

示例

描述: 帧速设置为100ms

jQuery 代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<!DOCTYPE html>

<html>

<head>

  <style>

    div { width:50px; height:30px; margin:5px; float:left;

          background:green; }

    </style>

  <script src="http://code.jquery.com/jquery-1.5.2.js"></script>

</head>

<body>

  <p><input type="button" value="Run"/></p>

<div></div>

<script>

jQuery.fx.interval = 100;

 

$("input").click(function(){

  $("div").toggle( 3000 );

});

  </script>

 

</body>

</html>

上一篇:jQuery.fx.off下一篇:Ajax