<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery动画特效</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <style type="text/css"> #tip{ position:absolute; left:200px; top:50px; width:80px; height:80px; border: solid 1px #ccc; margin: 0px 8px; background-color: Red; color:White; vertical-align:middle; } </style> </head> <body> <input type="button" id="btnLeft" value="左移按钮"> <input type="button" id="btnRight" value="右移按钮"> <div id="tip"></div> <div id="text"></div> <script> $(function(){ var $div1=$("#tip"); $("#btnLeft").bind("click",function(){ $div1.animate({ left:"+=50px" },3000,function(){ $(#text).html("执行完成!"); }) }); $("#btnRight").bind("click",function(){ $div1.animate({ left:"-=50px" },3000,function(){ $(#text).html("执行完成!"); }) }) </script></html>
添加回答
举报
0/150
提交
取消