首页 > 代码库 > 今天讲的是JQ 的动画效果
今天讲的是JQ 的动画效果
老规矩,先贴代码
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> </head> <style>body{font-family: "微软雅黑";width: 980px; margin: 0 auto; text-align: center;} .box{ width: 200px; height: 200px; background: #e9e9e9; border: 1px solid #e6e6e6; margin-top: 50px; line-height: 200px; position: absolute; }button{ border: none; background: green; width: 100px; height: 50px; line-height: 50px; color: #fff; font-size: 16px; }</style> <body> <button>点击开始动画</button> <div class="box" > Hello!你好 </div> <script> $(document).ready(function(){ $("button").click(function(){ $(".box").animate({ right:‘150px‘, }); }); }); </script> </body></html>
先是 作出了 简单的 滑块向右滑动了 150px 的 JQ 代码
要点:
1、事件按钮的选择,并且与click 点击事件 函数相连接 起来
2、节点的选择。在上述的例子中就是 “.box”
3、滑块的 css 属性当中 必须有 position 的 属性值在里面 才能 配合 这个 animate();运动起来
接下来 再 写一个 稍微复杂一点的效果
jQuery animate() - 使用队列功能
明天再贴代码,小冰子君已经玩儿嗨了...
今天讲的是JQ 的动画效果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。