Scroll上的粘滞/固定菜单闪烁(CSS和jQuery问题)

时间:2018-04-03 21:53:01

标签: javascript jquery html css

我只在谷歌浏览器上遇到这个奇怪的问题,当我在下面的网站上向下滚动时,有一点我无法摆脱闪烁。

http://new.lovelife.one/

这使用Bridge Wordpress主题,我稍微修改了菜单。我已经检查了jQuery文件,该文件在滚动时添加了类,并且还检查了CSS但是无法确切地看到原因是什么!

视频演示此问题:

https://www.useloom.com/share/6d59405dc7174e14ba2ea026a4305f1e

1 个答案:

答案 0 :(得分:0)

请在样式表中添加以下样式

header.centered_logo .logo_wrapper {
    height: auto !important;
  transition: all 0.2s ease-in 0s;
    -webkit-transition:  all 0.2s ease-in 0s;
    -ms-transition:  all 0.2s ease-in 0s;
}
.scrolled .logo_wrapper {
    display: none;
}
.header_bottom, header, .header_inner, .header_top_bottom_holder{
transition: all 0.2s ease-in 0s;
    -webkit-transition:  all 0.2s ease-in 0s;
    -ms-transition:  all 0.2s ease-in 0s;
}