我對jquery和任何類型的編程都很陌生。用.click動畫覆蓋.hover動畫?
單擊對象時是否有覆蓋.hover的方法?我試圖讓圖片在點擊時保持動畫的寬度,而不會回到它的原始大小。
這是我到目前爲止有:
$(function() {
$("#eggroll2, #eggrollL2").hover(function() {
$(this).stop(true, true).animate({
width: "300px"
}, 250, "swing")
}, function() {
$(this).stop(false, false).animate({
width: "150px"
}, 250, "swing")
});
$("#middleRoll").hover(function() {
$("#eggroll2, #eggrollL2").stop(true, true).animate({
width: "250px"
}, 250, "swing")
}, function() {
$("#eggroll2, #eggrollL2").stop(false, false).animate({
width: "150px"
}, 250, "swing")
});
});
而如果他們盤旋迴來和懸停關,以後,點擊它之後? –