我試圖在一些代碼中使用一些神奇的CSS類(http://www.minimamente.com/magic-css3-animations/),並試圖用mouseenter和mouseleave添加jquery,但它並不工作......完全不能!使用jQuery添加魔術CSS3動畫時無法正常工作
以下是我已經嘗試
$(document).ready(function(){
$('#banner-holder').on('mouseenter', function(){
$(this).find('#prev, #next').addClass('magictime perspectiveLeft');
});
$('#banner-holder').on('mouseleave', function(){
$(this).find('#prev, #next').removeClass('perspectiveLeft');
$(this).find('#prev, #next').addClass('perspectiveLeftRetourn');
});
});
它觸發perspectiveLeft的代碼,但在鼠標移出它沒有做perspectiveLeftRetourn。我犯了一個簡單的錯誤?
得到這個方便的js小提琴嗎? – Novocaine
不幸的是,因爲它在本地託管和工作網站,所以我現在無法發佈代碼。有點糟糕 –
爲什麼你需要$(this).find('#prev,#nextxt')'。 不是'$('#prev,#next')'夠了嗎? – nubinub