我嘗試添加點擊功能,但它不能運行......如何結合了懸停功能相同的狀態點擊
$("#menu2 li").hover(function() { //On hover...
$(this).find("span").stop().animate({
marginTop: "-40" //Find the span tag and move it up 40 pixels
}, 250);
$("#menu2 li").click(function() { //On click...
$(this).find("span").stop().animate({
marginTop: "-40" //Find the span tag and move it up 40 pixels
}, 250); }
, function() { //On hover out...
$(this).find("span").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 250);
});
});
這裏是鏈接:after click, i hope it still be white color
有什麼問題嗎? –
你能解釋一下你想做什麼嗎?你想執行'mouseenter'(懸停)執行的相同函數嗎? –
請點擊菜單中的更具體的 –