gpt4 book ai didi

html - 旋转图标在 codepen 中有效,但在浏览器中无效

转载 作者:行者123 更新时间:2023-11-28 11:30:59 25 4
gpt4 key购买 nike

我正在使用代码来嵌入在悬停时旋转的社交网络图标。我正在为一个元素调整它们,它在 this pen 中工作正常.但是,当我将代码复制到 Brackets 时,无论何时加载页面,图标都不会出现,直到您将鼠标悬停在正方形上。任何人都知道我出错后会去哪里?

HTML

<section>
<ul id='services'>
<li>
<div class='entypo-facebook'></div>
</li>
<li>
<div class='entypo-twitter'></div>
</li>
<li>
<div class='entypo-gplus'></div>
</li>
<li>
<div class='entypo-linkedin'></div>
</li>
</ul>
</section>

CSS

@import url(http://weloveiconfonts.com/api/?family=entypo);
/* entypo */
[class*="entypo-"]:before {
font-family: 'entypo', sans-serif;
}

html, body {
margin: 0;
background-color: #ECF0F1;
}

section #services {
text-align: center;
transform: translatez(0);
}


section #services li {
width: 40px;
height: 40px;
display: inline-block;
margin: 20px;
list-style: none;
}

section #services li div {
width: 40px;
height: 40px;
color: #ECF0F1;
font-size: 1.2em;
text-align: center;
line-height: 40px;
background-color: #cccccc;
transition: all 1s ease;
}

section #services li div:hover {
transform: rotate(360deg);
-ms-transform: rotate(360deg); /* IE 9 */
-webkit-transform: rotate(360deg); /* Safari and Chrome */
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
background-color: #303030;
}

最佳答案

您必须在 transform 属性中设置 -webkit- -moz- 等前缀。

SEE DEMO

section #services li div:hover {
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
border-radius: 100px;
}

关于html - 旋转图标在 codepen 中有效,但在浏览器中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21150986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com