首页 > 代码库 > jQuery学习-自定义动画
jQuery学习-自定义动画
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>自定义动画</title> <script src=http://www.mamicode.com/"js/jquery.js"></script> <style> .me1{ position: absolute; left: 20%; top: 50%; margin-left: -150px; margin-top: -75; width: 400px; height: 100px; background-color: orange; overflow: auto; padding: 10px; border: 30px solid lightblue; } .me2{ position: absolute; left: 70%; top: 50%; margin-left: -200px; margin-top: -75; width: 400px; height: 100px; background-color: blue; overflow: auto; padding: 10px; border: 30px solid orange; } </style> <script type="text/javascript"> //页面加载完成简写形式 $(function(){ //animate 第一参数 目标值 第二个参数持续时间 $(".me1").animate({left:"60%",top:"80%",width:"5%",height:"5%",borderWidth:"1px"}, {queue:true, duration: 1000} //queue使用队列动画 ) $(".me1").animate({left:"20%",top:"50%",width:"20%",height:"20%",borderWidth:"30px"}, {queue:true, duration: 1000} //queue使用队列动画 ) }) </script> </head> <body> <div class="me1"></div> <div class="me2"></div> </body> </html>
jQuery学习-自定义动画
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。