私はいくつかのコード(http://www.minimamente.com/magic-css3-animations/)でいくつかの魔法のcssクラスを使用しようとしており、それらをmouseenterとmouseleaveを使用してjqueryで追加しようとしていますが、機能していません...全て!
以下は私が試したコードです
$(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 を実行しません。私は単純な間違いを犯していますか?