jquery实现上下浮动
Posted super超人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery实现上下浮动相关的知识,希望对你有一定的参考价值。
jquery实现上下浮动:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function() { $("button").click(function(){ a(); }); }); <!--递归循环--> function a(){ $("#p1").css("color","red").slideUp(2000).slideDown(2000,function(){ a(); }); } </script> </head> <body> <p id="p1">菜鸟教程!!</p> <button>点我</button> </body> </html>
以上是关于jquery实现上下浮动的主要内容,如果未能解决你的问题,请参考以下文章