jquery使用animate方法实现控制元素移动
作者:bea
本文实例讲述了jquery使用animate方法实现控制元素移动。分享给大家供大家参考。具体分析如下: 通过jquery的animate方法控制元素移动,这里需要将元素的位置定义为relative, fixed, 或者 absolute! <!DOCTYPE html><html><head><script src="js/jquery.min.js"></script><script>$(docum
本文实例讲述了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(){
$("div").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>
<div style="background:#98bf21;
height:100px;width:100px;position:absolute;">
</div>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
有用 | 无用
通过jquery的animate方法控制元素移动,这里需要将元素的位置定义为relative, fixed, 或者 absolute!
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").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>
<div style="background:#98bf21;
height:100px;width:100px;position:absolute;">
</div>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 原生JavaScript编写俄罗斯方块
- 原生js结合html5制作简易的双色子游戏
- 原生js结合html5制作小飞龙的简易跳球
- PHPMyAdmin导入时提示文件大小超出PHP限制的解决方法
- 浅谈类似于(function(){}).call()的js语句
- jquery实现右键菜单插件
- 纯JavaScript实现的兼容各浏览器的添加和移除事件封装
- jquery表单验证插件(jquery.validate.js)的3种使用方式
- JQuery调用绑定click事件的3种写法
- 对Web开发中前端框架与前端类库的一些思考
- Javascript优化技巧之短路表达式详细介绍
- 学习JavaScript编程语言的8张思维导图分享
- JavaScript中的函数声明和函数表达式区别浅析
- jQuery使用fadein方法实现渐出效果实例
- jQuery使用fadeout实现元素渐隐效果的方法
- javascript包装对象实例分析
- javascript操作select元素实例分析
- jquery使用slideDown实现模块缓慢拉出效果的方法
- jQuery使用slideUp方法实现控制元素缓慢收起