animate实用点击动画
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
body{margin:0;padding:0;}
#navigation{ background:#C69; width:200px;height:300px; float:right;}
#cc{ background:#9C9;width:100px;height:100px;z-index:999;position:absolute;margin-top:150px;}
.cb{width:950px;margin:0 auto;padding:0;position:relative;height:500px;}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#cc").click(function(){
$(this).animate({
width: "200px",
height:"300px",
marginLeft:"750px",
marginTop:"0px"
}, 1000 ).animate({
opacity:"0"
}, 200 );
});
})
</script>
</head>
<body>
<div class="cb">
<div id="cc">漂移</div>
<div id="navigation">箱子</div>
</div>
</body>
</html>