将鼠标悬停在CSS3上的链接元素上时,产生了光晕和填充扩展效果。但是,当动画结束时,并且您继续将鼠标悬停在上面时,结结声会很短,并且填充会延伸得更多。

CSS:

#links {
    background: rgba(34,34,34,0.75);
    max-width: 400px;
    padding: 0px 10px 2px 10px;
    margin: 0 auto;
    position: relative;
    right: -100px;
    bottom: -100px;
    clear: both;
    z-index: -1;
}

#links h3 {
    padding: 0px;
    font-size: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: whitesmoke;
}

#links ul {
    padding: 0px;
}

#links li {
    display:inline;
    padding-right: 15px;
}

#links li a:link {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: whitesmoke;
    text-decoration: none;
    /*Transitions*/
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#links li a:visited {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: whitesmoke;
    text-decoration: none;
    /*Transitions*/
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
 }

#links li a:active {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: AliceBlue;
    text-decoration: none;
}

#links li a:hover {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: AliceBlue;
    text-decoration: none;
    padding: 6px;
    /*Glow*/ -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}


和HTML:

<div id="links">
    <h3 id="subtitle">Links</h3>
    <ul>
        <li><a href="">Resume</a></li>
        <li><a href="">LinkedIn</a></li>
        <li><a href="">GitHub</a></li>
    </ul>
</div>


和codepen:http://codepen.io/abs26/pen/RNdbzj

最佳答案

发生这种情况是因为font-weight:bold。字体的宽度增加,并且没有过渡。

您可以在悬停时使用文本阴影而不是字体粗细突出显示链接:

文本阴影:0 0 1px AliceBlue,0 0 1px AliceBlue;

#links li a:hover {
font-family: 'Raleway', sans-serif;
color: AliceBlue;
text-decoration: none;
padding: 6px;
**text-shadow: 0 0 1px AliceBlue, 0 0 1px AliceBlue;**
}


您可以重复文本阴影以固定您认为合适的“边界”。例如:text-shadow:0 0 1px AliceBlue,0 0 1px AliceBlue,0 0 1px AliceBlue;

关于html - 动画结束后出现短停顿,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29288223/

10-09 15:20