0
我正在玩代碼來嵌入懸停時旋轉的社交網絡圖標。我正在爲一個項目調整它們,並且它在this pen中正常工作。但是,當我將代碼複製到方括號中時,只要頁面加載,圖標就不會出現,直到您將鼠標懸停在方塊上。任何人有任何想法後,我想錯了?紡紗圖標工作在codepen中,但不在瀏覽器中
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;
}
因爲我已經添加了這些前綴,謝謝,但字體仍不會加載,直到灰色方塊已經上空盤旋。 – Jackanapes
顯示現在的鏈接... – aldanux
我有,它在第二個codepen鏈接,當複製到一個文件,並在瀏覽器中查看它不會加載圖標,直到他們已經被盤旋 – Jackanapes