看過(guò)之后我也真正知道了什么叫基礎(chǔ)教程。不過(guò)老師講課還是挺有意思的。
2017-02-28
var index=1;
$(".car").click(function(){
if(index%2==1){
$(this).animate({top:"500px"},600)
index++;
}
else{
$(this).animate({top:"0px"},600)
index++;
}
})
可來(lái)回點(diǎn)擊,反復(fù)運(yùn)動(dòng)
$(".car").click(function(){
if(index%2==1){
$(this).animate({top:"500px"},600)
index++;
}
else{
$(this).animate({top:"0px"},600)
index++;
}
})
可來(lái)回點(diǎn)擊,反復(fù)運(yùn)動(dòng)
2017-01-12
太簡(jiǎn)單了,就一個(gè)animate....有必要花這么多時(shí)間做這個(gè)視頻嗎,感覺(jué)在教我們做特效視頻而不是特效網(wǎng)頁(yè)。。。
2017-01-03