当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jquery使用animate方法实现控制元素移动

jquery使用animate方法实现控制元素移动

2019年05月17日  | 移动技术网IT编程  | 我要评论
本文实例讲述了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>

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网