ナビゲーションアイテムの背景画像スプライトをアニメーション化する次のスクリプトがあります。
$j(function() {
$j(".menu-item:not(.current-menu-item) .bottom_nav").hover( function () {
$j(this).animate( {
backgroundPosition : '0px 35px'}
, 300); }
, function () {
$j(this).animate( {
backgroundPosition : '0px 0px'}
, 600); }
);
});
ここで、ホバースクリプトから2番目のクラスを除外したいと思います。私はそれを次の形式で追加しようとしました:
$j(".menu-item:not(.current-menu-item, .current-menu-parent) .bottom_nav").hover( function () {
と
$j(".menu-item:not('.current-menu-item, .current-menu-parent') .bottom_nav").hover( function () {
しかし、どちらもホバースクリプトを壊します。