时间:2021-05-26
delay(duration,[queueName])
设置一个延时来推迟执行队列中之后的项目。
jQuery 1.4新增。用于将队列中的函数延时执行。他既可以推迟动画队列的执行,也可以用于自定义队列。
duration:延时时间,单位:毫秒
queueName:队列名词,默认是Fx,动画队列。
参数 描述 speed 可选。规定延迟的速度。
可能的值:
完整测试代码:
<!DOCTYPE html><html><head><script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){ $("#div1").delay("slow").fadeIn(); $("#div2").delay("fast").fadeIn(); $("#div3").delay(800).fadeIn(); $("#div4").delay(2000).fadeIn(); $("#div5").delay(4000).fadeIn(); });});</script></head><body><p>This example sets different speed values for the delay() method.</p><button>Click to fade in boxes with a delay</button><br><br><div id="div1" style="width:90px;height:90px;display:none;background-color:black;"></div><br><div id="div2" style="width:90px;height:90px;display:none;background-color:green;"></div><br><div id="div3" style="width:90px;height:90px;display:none;background-color:blue;"></div><br><div id="div4" style="width:90px;height:90px;display:none;background-color:red;"></div><br><div id="div5" style="width:90px;height:90px;display:none;background-color:purple;"></div><br></body></html>例:
头部与底部延迟加载动画效果
$(document).ready(function() { $('#header') .css({ 'top':-50 }) .delay(1000) .animate({'top': 0}, 800); $('#footer') .css({ 'bottom':-15 }) .delay(1000) .animate({'bottom': 0}, 800); });声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
很多朋友只知道苹果的“HomeKit”是一个智能家居平台,下面小编介绍的是官方最全HomeKit用户界面使用指南,喜欢的朋友们可以一
javascript中setTimeout使用指南/*//方法1functionslows(){alert("15S后弹出!");}setTimeout("sl
这里我们使用dnsmasq对应的docker版本docker-dnsmasq。使用指南下载镜像dockerpulldocker-dnsmasq创建最简单的配置/
Docker-clientforpython使用指南:客户端初始化的三种方法importdockerdocker.api()docker.APIClient()
MYSQL初学者使用指南与介绍一、连接MYSQL。格式:mysql-h主机地址-u用户名-p用户密码1、例1:连接到本机上的MYSQL。首先在打开DOS窗口,然