<script src="https://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
http后得加s才會有效果,不加s的話jQuery路徑是不對的!!!
http后得加s才會有效果,不加s的話jQuery路徑是不對的!!!
2019-08-16
有很多不合理的地方,我重新改造了一下,求star,求圍觀。地址:https://github.com/CruxF/IMOOC/tree/master/HTML_CSS
2018-01-07
jquery地址要修改為“https://libs.baidu.com/jquery/1.9.0/jquery.js”
js代碼:
$(document).ready(function(){
$(".car").hover(
function () {
$(this).animate({
top: "500px",
}, 1000);
},
function(){
$(this).animate({
top:0,
},5000)
}
);
});
js代碼:
$(document).ready(function(){
$(".car").hover(
function () {
$(this).animate({
top: "500px",
}, 1000);
},
function(){
$(this).animate({
top:0,
},5000)
}
);
});
2018-01-06