jQuery实现的老虎机跑动效果示例

老虎机的跑动效果

注意需要自行引用jquery库

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>老虎机</title> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <style type="text/css"> #bigDiv div{ height:50px; width:50px; float:left; background-color:red; margin-left:5px; visibility: hidden; } #bigDiv p{ margin-left: 10px; } </style> </head> <body> <div> <div id = bigDiv> <div><p>西瓜</p></div> <div><p>苹果</p></div> <div><p>香蕉</p></div> <div><p>橘子</p></div> <div><p>梨子</p></div> <div><p>哈密瓜</p></div> <div><p>草莓</p></div> <div><p>水蜜桃</p></div> <div><p>橙子</p></div> <div><p>谢谢</p></div> </div> <br/><br/><br/><br/> <input type="button" value="Auto"> </div> <script language="javascript"> var allDiv = $("#bigDiv").find("div"); var t; var tCicrl = 30; var c = 0; function autoStop(){ var index = 11;//11取值范围是大于已有选项项数 $(allDiv).each(function(i){ if($(this).css("visibility")!="hidden"){ index = i; } }); if(index == 11){ index = parseInt(9*Math.random()); } $(allDiv).eq(index).css("visibility","visible"); setTimeout(function(){slotRun(index);},50); } function slotRun(index){ if(c<150){ if($(allDiv).eq(index).css("visibility")!="hidden") { $(allDiv).eq(index).css("visibility","hidden"); if(index==9){ //clearTimeout(t); $(allDiv).eq(0).css("visibility","visible"); t = setTimeout(function(){slotRun(0)},tCicrl++); }else{ //clearTimeout(t); $(allDiv).eq(index+1).css("visibility","visible"); t = setTimeout(function(){slotRun(++index)},tCicrl++); } c++; } }else{ clearTimeout(t); tCicrl = 30; c = 0; } } </script> </body> </html>

使用在线HTML/CSS/JavaScript代码运行工具测试运行上述代码,可得如下运行结果:

jQuery实现的老虎机跑动效果示例

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery操作DOM节点方法总结》、《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery表格(table)操作技巧汇总》、《jquery中Ajax用法总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/6b1fd8d7d7d779016d6156c0694afa75.html