jquery使用animate方法实现控制元素移动
程序员文章站
2022-08-03 13:11:04
本文实例讲述了jquery使用animate方法实现控制元素移动。分享给大家供大家参考。具体分析如下:
通过jquery的animate方法控制元素移动,这里需要将元素的位置定义...
本文实例讲述了jquery使用animate方法实现控制元素移动。分享给大家供大家参考。具体分析如下:
通过jquery的animate方法控制元素移动,这里需要将元素的位置定义为relative, fixed, 或者 absolute!
<!doctype html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").animate({left:'250px'}); }); }); </script> </head> <body> <button>start animation</button> <p>by default, all html elements have a static position, and cannot be moved. to manipulate the position, remember to first set the css position property of the element to relative, fixed, or absolute!</p> <p style="background:#98bf21; height:100px;width:100px;position:absolute;"> </p> </body> </html>
推荐阅读
-
jQuery实现通过方向键控制div块上下左右移动的方法【测试可用】
-
jQuery实现动态控制页面元素的方法分析
-
jQuery使用fadeout实现元素渐隐效果的方法教程
-
jquery使用animate方法实现控制元素移动
-
jQuery animate()实现背景色渐变效果的处理方法【使用jQuery.color.js插件】
-
!yii里如何实现使用Jquery Ajax传值到控制器action方法里
-
!yii里如何实现使用Jquery Ajax传值到控制器action方法里
-
求助!yii里怎么实现使用Jquery Ajax传值到控制器action方法里
-
求助!yii里怎么实现使用Jquery Ajax传值到控制器action方法里
-
jQuery使用slideUp方法实现控制元素缓慢收起_jquery