jquery 实现滚屏 轮播
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 实现滚屏 轮播相关的知识,希望对你有一定的参考价值。
使用
animate()方法;
不多次执行animate;
<script type="text/javascript"> $(document).ready(function(){ $("#start").click(function(){ if($("#box:animated").length==0)就是这句话 { $("#box").animate({height:300},"slow"); $("#box").animate({width:300},"slow"); $("#box").animate({height:100},"slow"); $("#box").animate({width:100},"slow"); } }); }); </script>
以上是关于jquery 实现滚屏 轮播的主要内容,如果未能解决你的问题,请参考以下文章