これが私のjqueryコード全体です:
$(function(){
$(".sc").hover(function(){
$(".sc span.L1").animate({marginRight:'0px'},100);
$(".sc span.L2").animate({marginRight:'28px'},200);
$(".sc span.L3").animate({marginRight:'5px'},300);
$(".sc span.L4").animate({marginRight:'19px'},400);
}, function(){
$(".sc span.L1").animate({marginRight:'0px'},100);
$(".sc span.L2").animate({marginRight:'0px'},200);
$(".sc span.L3").animate({marginRight:'0px'},300);
$(".sc span.L4").animate({marginRight:'0px'},400);
});
$(".sc").click(function(){
if ($(".sc div#trigger").hasClass('passive')){
$(".sc div#trigger").removeClass('passive');
$(".sc div#trigger").addClass('active');
}
else {
$(".sc div#trigger").addClass('passive');
$(".sc div#trigger").removeClass('active');
};
});
div#trigger.hasClass('passive')の場合、ホバー効果を停止したい。つまり、div#triggerのクラスが「パッシブ」の場合はホバー効果を無効にし、クラスが「アクティブ」の場合は有効にします。
このコードをどのように使用できますか?!
if ($(".sc div#trigger").hasClass('passive')) {
// codes to stop hover effect
}