我使用CSS3过渡根据鼠标悬停时的边距值为某些链接设置动画。它的动画效果如预期,但Chrome中的动画并不像Firefox,IE10等其他浏览器那样流畅。
在我悬停在链接上的Chrome中,所有其他链接都略有移动。请检查以下链接。
CSS
.social {
list-style: none;
float: right;
text-align: right;
position: relative;
top: 15px;
}
.social li {
padding: 2px 0;
}
.social li a {
font-size: 18px;
color: #a6a7a6;
margin-right: 5px;
-webkit-transition: margin 400ms;
-moz-transition: margin 0.2s ease;
-o-transition: margin 0.2s ease;
-ms-transition: margin 0.2s ease;
transition: margin 0.2s ease;
}
.social li a:hover {
color: #1b1b1b;
margin-right: 23px;
}
.social .ico {
background-color: #1b1b1b;
background-position: center center;
background-repeat: no-repeat;
width: 20px;
height: 20px;
position: absolute;
margin-left: 6px;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 400ms;
-moz-transition: opacity 0.2s ease;
-o-transition: opacity 0.2s ease;
-ms-transition: opacity 0.2s ease;
transition: opacity 0.2s ease;
}
.social li a:hover .ico {
opacity: 1;
filter: alpha(opacity=100);
}
HTML
<ul class="social">
<li><a href="#">FACEBOOK<span class="ico"></span></a></li>
<li><a href="#">TWITTER<span class="ico"></span></a></a></li>
<li><a href="#">LINKEDIN<span class="ico"></span></a></a></li>
<li><a href="#">YOUTUBE<span class="ico"></span></a></a></li>
</ul>
答案 0 :(得分:3)
ul社交正在改变其宽度以适应增加边际的孩子的新宽度。孩子们因此而离开,但随后孩子的边缘被重新计算,他们又回到了正确的位置。
只需修改此宽度:
.social {
list-style: none;
float: right;
text-align: right;
position: relative;
top: 15px;
width: 121px;
}
答案 1 :(得分:3)
您可以float: right
链接本身来解决问题。
.social li a {
float: right;
/* the rest of the styles */
}
此外,没有-ms-transition
。 IE10 supports transitions unprefixed, while IE9 does not support them at all