基礎(chǔ)實(shí)踐題
使用CSS樣式與jQuery分步驟實(shí)現(xiàn)搶車位動畫效果
任務(wù)
CSS樣式定位車圖片位置
1、在style.css文件中的11行,輸入下面代碼:
position: absolute;
2、在style.css文件中的12行,輸入下面代碼:
top: 0;
3、在style.css文件中的13行,輸入下面代碼:
left:720px;
用jQuery代碼讓車動起來
1、在script.js文件中的3行,輸入下面代碼:
$(".car").animate({left:'0px'},{duration:300});
2、在script.js文件中的5行,輸入下面代碼:
$(".car").animate({left:'720px'},{duration:300});
<!DOCTYPE html>
<html>
<head>
<title>停車動畫</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="style.css" rel="stylesheet" type="text/css">
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="boxgrid">
<img class="car" src="http://img1.sycdn.imooc.com//5343d553000107a107200701.jpg" width="350" height="341"/>
<img src="http://img1.sycdn.imooc.com//5343d56b0001ccfb07200701.jpg" width="350" height="341"/>
</div>
</body>
</html>
$(document).ready(function(){
$('.boxgrid').hover(function(){
}, function() {
});
});
*{ padding:0px; margin:0px; }
body{
background:#D5DEE7;
}
.boxgrid{
width: 720px;
height: 701px;
border: solid 2px #8399AF;
}
.boxgrid img.car{
}
請驗(yàn)證,完成請求
由于請求次數(shù)過多,請先驗(yàn)證,完成再次請求