源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2020-01-27 17:14 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js图片闪动特效可以控制间隔时间如几分钟闪动一下
图片一出来,过5秒钟,开始闪动,然后停止。
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);
});
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部