transition 动画有抖动怎么办?

  margin-bottom: 64px;
  transition: margin-bottom 0.3s ease;
  will-change: margin-bottom;

大佬们这样设置在边界点会一直抖动怎么办?我就想在鼠标悬浮的时候元素向上,并且这个向上有个渐变效果,不那么生硬

阅读 968
1 个回答
新手上路,请多包涵

你可以用transform来实现这个效果,不用margin-bottom

transform: translate(0, 20px);
transition: transform .3s ease;
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题