html5中文学习网

您的位置: 首页 > 网站及特效实例 > javascript特效 » 正文

js图片闪动特效可以控制间隔时间如几分钟闪动一下_javascript技巧_

[ ] 已经帮助:人解决问题

图片一出来,过5秒钟,开始闪动,然后停止。qJJHTML5中文学习网 - HTML5先行者学习网

var inter={};var i=0;$(document).ready(function(){$("a").each(function(index,item){$(this).bind().click(function(){i=index;if(inter!=null || inter.length>0){window.clearInterval(inter);}window.setTimeout(function(){inter=window.setInterval(function(){ $("img").eq(i).show().fadeOut(100).fadeIn(100);},500);window.setTimeout(function(){window.clearInterval(inter);},5000);},5000);});});window.setTimeout(function(){inter=window.setInterval(function(){ $("img").eq(i).show().fadeOut(100).fadeIn(100);},500);window.setTimeout(function(){window.clearInterval(inter);},5000);},5000);});
(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助