我在背景图像上使用 CSS3 转换以在悬停时放大。
我已经在 Opera、Safari 和 Firefox 的最新浏览器中进行了测试,并且运行良好且流畅,但是在 Chrome 中过渡非常生涩。
这是链接,将鼠标悬停在社交图标上即可查看我的意思。http://www.media-flare.com/pins/ - 我注意到当您将浏览器大小调整为移动视图时,情况会变得更糟。
我在这里做了一个 jsfiddle 版本,并减慢了转换速度,因为它更难看到。
http://jsfiddle.net/wsgfz/1/ - 这在 chrome 和 firefox 中看起来很生涩,在 safari 和 Opera 中很流畅。
我能做些什么来使过渡更顺利吗?
如果您无法查看 jsfiddle,这是代码
.social {
position: relative;
list-style:none;
}
.social > li > a {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
color: transparent;
}
.social > li > a {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
color: transparent;
}
.fbook, .twit, .tmblr, .pntrst, .insta {
background: url(http://placehold.it/350x150) center center;
width: 78px;
height: 90px;
background-size: cover;
float: left;
margin: 30px;
-webkit-transition: all 0.8s ease;
-moz-transition: all 0.8s ease;
transition: all 0.8s ease;
}
.fbook {background-position: 0 0}
.twit {background-position: -78px 0}
.tmblr {background-position: -156px 0}
.pntrst {background-position: -232px 0}
.insta {background-position: -310px 0}
.fbook:hover, .twit:hover, .tmblr:hover, .pntrst:hover, .insta:hover {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
transform: scale(1.5);
}
<ul class="social">
<li><a href="" class="fbook">Facebook</a></li>
<li><a href="" class="twit">Twitter</a></li>
<li><a href="" class="tmblr">Tumbler</a></li>
<li><a href="" class="pntrst">Pinterest</a></li>
<li><a href="" class="insta">Instagram</a></li>
<li><a href="" class="rss">RSS</a></li>
</ul>