我試圖通過圖像顯示一些類別,懸停時圖像變大,其他圖像變小,懸停的圖像會變暗並出現一個按鈕。這一切都有效。然而,其後不會回到原來的狀態。懸停功能未恢復到其原始狀態
http://codepen.io/lucymacgregor/pen/jyJOBj ^這就是我得到的代碼。
//Image Category size change effect
$('.cat-wrap div').hover(function() {
$(this).css('width', '30%');
$(this).children().css('opacity','1');
$(this).siblings().css("width", "16.5%");
});
我覺得它是一個mouseout問題,但我認爲懸停功能已經照顧到了這一點。
唐不要把你的代碼放在codepen中,用[Stack Snippets](https:// sta ckoverflow.blog/2014/09/introducing-runnable-javascript-css-and-html-code-snippets/) – Barmar