将鼠标悬停在图标上时按钮文字模糊

时间:2016-08-22 10:25:56

标签: javascript jquery css

当我盘旋时,我已经将纸张图标的图标震动了。但是,下面按钮上的文字也有点模糊。我试图删除动画,当你将鼠标悬停在图标上时文本仍然模糊(尽管图标没有做任何事情)。

动画的CSS:

.fa-shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

jQuery:

$('.plane').hover(function() {
    $(this).addClass('fa-shake');
}, function () {
    $(this).removeClass('fa-shake');
});

Full code如果需要。

1 个答案:

答案 0 :(得分:3)

我会将震动添加到图标中......而不是整个div。

$('.plane').hover(function() {
    $(this).find('i').addClass('fa-shake');
}, function () {
    $(this).find('i').removeClass('fa-shake');
});

这似乎可以解决问题 - Codepen