欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-23 15:12:24
本文实例讲述了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>