javascript函数中的一个函数来重复js jquery jq循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript函数中的一个函数来重复js jquery jq循环相关的知识,希望对你有一定的参考价值。
// animation functions zlpFX = { show1: function() { $('div#mainBackground2').fadeOut(3000); $('div#transMoving').animate({ paddingLeft: "180px", paddingTop: "20px" }, 4000).find('h3').fadeOut(2000); setTimeout("zlpFX.show2()", 14000); }, show2: function() { $('div#mainBackground2').fadeIn(4000); $('div#transMoving').animate({ paddingLeft: '220px', paddingTop: '75px' }, 4500).find('h3').fadeIn(6000); setTimeout("zlpFX.show1()", 14000); } }; // now start the animation functions setTimeout("zlpFX.show1()", 11000);
以上是关于javascript函数中的一个函数来重复js jquery jq循环的主要内容,如果未能解决你的问题,请参考以下文章
chrome扩展中popup.html和popup.js之间的函数JavaScript(考虑到来自后台的消息)[重复]