codecamp

jQuery.fx.interval

返回值: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.w3cschool.cn/attachments/image/cimg/div><script>jQuery.fx.interval = 100;$("input").click(function(){  $("div").toggle( 3000 );});  </script></body></html>
slideUp([speed,[easing],[fn]])
slideToggle([speed],[easing],[fn])
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }