我只在谷歌浏览器上遇到这个奇怪的问题,当我在下面的网站上向下滚动时,有一点我无法摆脱闪烁。
这使用Bridge Wordpress主题,我稍微修改了菜单。我已经检查了jQuery文件,该文件在滚动时添加了类,并且还检查了CSS但是无法确切地看到原因是什么!
视频演示此问题:
https://www.useloom.com/share/6d59405dc7174e14ba2ea026a4305f1e
答案 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;
}