使用jQuery循环并设置数组元素的动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery循环并设置数组元素的动画相关的知识,希望对你有一定的参考价值。
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Loop through an array using jQuery</title> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> <script type="text/javascript"> var arrNames = ['Tom', 'Jane', 'Harry', 'Rick', 'Moby']; $.each(arrNames, function(i, val) { setTimeout(function() { $('#divDisp').fadeOut("slow", function() { $(this).text(val).fadeIn("slow"); }); }, i * 3000); }); </script> </head> <body> <div id='divDisp'></div> </body> </html>
以上是关于使用jQuery循环并设置数组元素的动画的主要内容,如果未能解决你的问题,请参考以下文章