导航菜单在从一个页面移动到另一个页面时闪烁,仅在Chrome中

时间:2016-11-26 15:29:08

标签: html css navigation flicker

我在创建的网站上遇到了问题。当您从一个页面移动到另一个页面但仅在Chrome和IE中移动时,导航菜单会闪烁。

更奇怪的是,当我在Chrome上的icognito窗口中打开它或在本地​​加载它时,它不会发生。

这是一个实例 - http://andrewbruce.me

我会把代码放在下面 -

导航HTML -

<body>

<div class="menuButton" onclick="decide(this);">
  <div id = "bar1"></div>
  <div id = "bar2"></div>
  <div id = "bar3"></div>
</div>

<div id ="nav">
     <ul>
        <a href = "home.html"><li>HOME<span style = "float: right; padding-right: 2%;">></span></li><a/>
        <a href = "portfolio.html"><li>PORTFOLIO<span style = "float: right; padding-right: 2%;">></span></li><a/>
        <a href = "cv.html"><li>CV<span style = "float: right; padding-right: 2%;>></span></li><a/>
        <a href = "contact.html"><li>CONTACT<span style = "float: right; padding-right: 2%;">></span></li><a/>
    </ul>
</div>

导航CSS -

#nav {
    height: 100%; 
    width: 22%;
    text-align: center;
    box-shadow: 2px 2px 5px #888888;
    transition: all .3s ease-in-out;
    background-color: #1b1d1f;
    float: left;
    position: fixed;
    z-index: 2;
}

#nav ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    line-height: 2;
    margin-top: 20%;
}

#nav a {
    text-decoration: none;
}

#nav li {
    transition: all .2s ease-in-out;
    color: white;
    font-size: 25px;
    text-align: left;
    padding-left: 15px;
}

2 个答案:

答案 0 :(得分:0)

我已经在Chrome和Safari中测试了您的网站,我似乎无法重现闪烁。闪烁可能是由于加载速度和导航栏刚刚加载。基于它只发生在公共服务器上的事实。当您进行本地测试时,速度往往是即时的,因为它直接从您计算机上的文件中提取。

答案 1 :(得分:0)

我明白了。我安装了Chrome扩展程序,这会降低浏览器的性能,因此它会慢慢加载导航栏。

因此,为什么它在隐身处工作,因为没有任何扩展正在加载!