简单的移位动画
2011-07-18 15:29 Rollen Holt 阅读(378) 评论(0) 编辑 收藏 举报<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>移动位置的动画</title> <script type="text/javascript" src="Jscript/jquery-1.4.2-vsdoc.js"> </script> <script type="text/javascript" src="Jscript/jquery-1.4.2.js"> </script> <style type="text/css"> body{font-size:13px} .divFrame{border:solid 1px #666;width:168px;text-align:center;} .divFrame .divTitle{background-color:#eee;padding:5px 0px 5px 0px} .divFrame .divContent{width:108px;height:52px;padding:5px 0px 5px 0px;margin:0px 30px 0px 30px;overflow:hidden} .divFrame .divContent .divList{width:162px;position:absolute} .divFrame .divContent .divList span{border:solid 1px #ccc;background-color:#eee;width:50px;height:50px;float:left;margin-right:2px} .btn {border:#666 1px solid;padding:2px;width:60px;filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff, EndColorStr=#ECE9D8)} </style> <script type="text/javascript"> $(function() { $("input:eq(0)").click(function() { //左移按钮点击事件 //在3000毫秒内,以动画的形式向左移动52个像素 $(".divList").animate({ left: "-=52px" }, 3000); }) $("input:eq(1)").click(function() { //右移按钮点击事件 //在3000毫秒内,以动画的形式向右移动52个像素 $(".divList").animate({ left: "+=52px" }, 3000); }) }) </script> </head> <body> <div class="divFrame"> <div class="divTitle"> <input id="Button1" type="button" value="左移" class="btn" /> <input id="Button2" type="button" value="右移" class="btn" /> </div> <div class="divContent"> <div class="divList"> <span>1</span> <span>2</span> <span>3</span> </div> </div> </div> </body> </html>
==============================================================================
本博客已经废弃,不在维护。新博客地址:http://wenchao.ren
我喜欢程序员,他们单纯、固执、容易体会到成就感;面对压力,能够挑灯夜战不眠不休;面对困难,能够迎难而上挑战自我。他
们也会感到困惑与傍徨,但每个程序员的心中都有一个比尔盖茨或是乔布斯的梦想“用智慧开创属于自己的事业”。我想说的是,其
实我是一个程序员
==============================================================================