溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

css3的@fant-face中怎么使用字體化圖標(biāo)

發(fā)布時(shí)間:2022-03-08 10:55:17 來(lái)源:億速云 閱讀:89 作者:iii 欄目:web開發(fā)

本文小編為大家詳細(xì)介紹“css3的@fant-face中怎么使用字體化圖標(biāo)”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“css3的@fant-face中怎么使用字體化圖標(biāo)”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

HTML

代碼如下:

<body>
<!-- ul.layout>li*5>a[href=#]>i.icon -->
<!-- Sublime Text 快捷拼寫 -->
<ul class="layout">
<li><a href="#"><i class="icon">&#xe601;</i></a></li>
<li><a href="#"><i class="icon">&#xe600;</i></a></li>
<li><a href="#"><i class="icon">&#xe602;</i></a></li>
<li><a href="#"><i class="icon">&#xe603;</i></a></li>
<li class="last-child"><a href="#"><i class="icon">&#xe604;</i></a></li>
<div class="clear"></div>
</ul>
</body>

CSS

代碼如下:

<style>
* {margin:0; padding:0;}
body { background-color: #fc0; padding-top: 50px;}
ul li { list-style: none;}
a { text-decoration: none;}
.clear { clear:both;}
.layout { width:604px; margin:0 auto;}
.layout li { display: block; float: left; border-right: 1px solid #930808; }
.layout li.last-child { border-right: none;}
.layout li a { display: block; width: 120px; height:120px; line-height: 120px; text-align: center; background-color: #f00;}
.layout li a i { color:#fc0;}
.layout li a:hover i { color:#fff;}
@font-face {
font-family: "icomoon";
src:url('fonts/icomoon.eot?-9731bi');
/*&uarr;兼容IE9兼容模式打開IE8及其以下瀏覽器可以顯示;*/
/*&darr;兼容IE9可以顯示;*/
src:url("fonts/icomoon.eot?#iefix") format("embedded-opentype"),
url("fonts/icomoon.woff") format("woff"),
url("fonts/icomoon.ttf") format("truetype"),
url("fonts/icomoon.svg") format("svg");
/*EOT { 微軟開發(fā)用于嵌入網(wǎng)頁(yè)中的字體,IE專用字體; }
**WOFF { Web字體中最佳格式,被W3C推薦; }
**TTF { 由Microsoft和Apple聯(lián)合開發(fā)的一套字體標(biāo)準(zhǔn),是Mac OS和Win操作系統(tǒng)中最常見的的一種字體; }
**SVG { 用于SVG字體渲染的一種格式,是由W3C制定的開放標(biāo)準(zhǔn)的圖形格式; }
*/
font-weight: normal;
font-style: normal;
}
.icon {
font-family: "icomoon";
font-style: normal;
font-weight: normal;
font-size: 90px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/*抗鋸齒屬性*/
}
</style>

讀到這里,這篇“css3的@fant-face中怎么使用字體化圖標(biāo)”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI