良い一日
次のCSSアニメーションがあります。
.ca-menu li:hover .ca-main{
color: #000;
-webkit-animation: moveFromLeftRotate 300ms ease;
-moz-animation: moveFromLeftRotate 300ms ease;
-ms-animation: moveFromLeftRotate 300ms ease;
}
さて、特定のページで、次のjQueryを追加して、その特定のページでのアニメーションを防止したいと思います...
var pathname = window.location.pathname;
if(pathname == '/ik/1084-2/'){
$('.ca-menu li:hover .ca-main').css({
'-webkit-animation': 'none',
'-moz-animation': 'none',
'-ms-animation': 'none'});
}
動作しません - それでもアニメーションが表示されます。
何か案は?
アップデート
解決:
CSS:
.noAnimation{
-webkit-animation: none !important;
-moz-animation: none !important;
-ms-animation: none !important;
}
JS:
$('.ca-menu .ca-main').addClass('noAnimation');
ご意見をお寄せいただきありがとうございます