DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS特效代碼 >> CSS3 使用自定義字體
CSS3 使用自定義字體
編輯:CSS特效代碼     
CSS3 @font-face 規則

在 CSS3 之前,web 設計師必須使用已在用戶計算機上安裝好的字體。
通過 CSS3,web 設計師可以使用他們喜歡的任意字體。
當您您找到或購買到希望使用的字體時,可將該字體文件存放到 web 服務器上,它會在需要時被自動下載到用戶的計算機上。
您“自己的”的字體是在 CSS3 @font-face 規則中定義的。


Firefox、Chrome、Safari 以及 Opera 支持 .ttf (True Type Fonts) 和 .otf (OpenType Fonts) 類型的字體。
Internet Explorer 9+ 支持新的 @font-face 規則,但是僅支持 .eot 類型的字體 (Embedded OpenType)。
注釋:Internet Explorer 8 以及更早的版本不支持新的 @font-face 規則。


使用您需要的字體
在新的 @font-face 規則中,您必須首先定義字體的名稱(比如 myFirstFont),然後指向該字體文件。
如需為 HTML 元素使用字體,請通過 font-family 屬性來引用字體的名稱 (hoverTreeFont):

先查看效果:http://hovertree.com/texiao/css/5.htm

完整HTML代碼:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>CSS3自定義字體 - 何問起</title><base target="_blank"/>
<meta charset="utf-8" />
<style>
@font-face {
font-family: hoverTreeFont;
src: url('http://hovertree.com/themes/fonts/Sansation_Light.ttf'),url('http://hovertree.com/themes/fonts/Sansation_Light.eot'); /* IE9+ */
}

@font-face {
font-family: hoverTreeFont;
src: url('http://hovertree.com/themes/fonts/Sansation_Bold.ttf'),url('http://hovertree.com/themes/fonts/Sansation_Bold.eot'); /* IE9+ */
font-weight: bold;
}

.hvtbold {
font-family: hoverTreeFont;
}
.hvtbold a{font-family: hoverTreeFont;}a{color:blue}
div{font-size:16px;font-family:Arial, Sans-Serif,NSimSun,"\5b8b\4f53";border:1px solid green;margin:5px;}
</style>
</head>
<body>


<div class="hvtbold">
加了自定義字體的效果:<br /><br />

With CSS3, websites can <b>finally</b> use fonts other than the pre-selected "web-safe" fonts.
<br /><br />何問起 hovertree.com <br /><br /><b>http://</b><br /><br /><a href="http://hovertree.com/down/">ASP.NET CMS源代碼下載</a><br />
<br /><a href="http://hovertree.com/hvtart/bjae/is0xr36t.htm">原文</a> <a href="http://hovertree.com/">首頁</a> <a href="http://hovertree.com/down/">更多特效</a>
</div>

<div>沒加自定義字體的效果:<br /><br />

With CSS3, websites can <b>finally</b> use fonts other than the pre-selected "web-safe" fonts.
<br /><br />何問起 hovertree.com <br /><br /><b>http://</b><br /><br /><a href="http://hovertree.com/down/">ASP.NET CMS源代碼下載</a><br />
<br /><a href="http://hovertree.com/hvtart/bjae/is0xr36t.htm">原文</a> <a href="http://hovertree.com/">首頁</a> <a href="http://hovertree.com/down/">更多特效</a>
</div>

</body>
</html>






實例
<style>
@font-face
{
font-family: myFirstFont;
src: url('http://hovertree.com/themes/fonts/Sansation_Light.ttf'),
url('http://hovertree.com/themes/fonts/Sansation_Light.eot'); /* IE9+ */
}

div.hvtfont
{
font-family:myFirstFont;
}

</style>
<div class="hvtfont">
With CSS3, websites can finally use fonts other than the pre-selected "web-safe" fonts.
</div>

<p><b>注釋:</b>Internet Explorer 9+ 支持新的 @font-face 規則。Internet Explorer 8 以及更早的版本不支持新的 @font-face 規則。</p>



效果如下: With CSS3, websites can finally use fonts other than the pre-selected "web-safe" fonts.

注釋:Internet Explorer 9+ 支持新的 @font-face 規則。Internet Explorer 8 以及更早的版本不支持新的 @font-face 規則。




使用粗體字體
您必須為粗體文本添加另一個包含描述符的 @font-face:
實例

<style>
@font-face
{
font-family: myFirstFont;
src: url('http://hovertree.com/themes/fonts/Sansation_Light.ttf')
,url('http://hovertree.com/themes/fonts/Sansation_Light.eot'); /* IE9+ */
}

@font-face
{
font-family: myFirstFont;
src: url('http://hovertree.com/themes/fonts/Sansation_Bold.ttf')
,url('http://hovertree.com/themes/fonts/Sansation_Bold.eot'); /* IE9+ */
font-weight:bold;
}

.hvtbold
{
font-family:myFirstFont;
}
</style>
<div class="hvtbold">
With CSS3, websites can <b>finally</b> use fonts other than the pre-selected "web-safe" fonts.
</div>


效果:
With CSS3, websites can finally use fonts other than the pre-selected "web-safe" fonts.



文件 "Sansation_Bold.ttf" 是另一個字體文件,它包含了 Sansation 字體的粗體字符。
只要 font-family 為 "myFirstFont" 的文本需要顯示為粗體,浏覽器就會使用該字體。
通過這種方式,我們可以為相同的字體設置許多 @font-face 規則。


CSS3 字體描述符
下面的表格列出了能夠在 @font-face 規則中定義的所有字體描述符:


描述符 值 描述 font-family name 必需。規定字體的名稱。 src URL 必需。定義字體文件的 URL。 font-stretch
  • normal
  • condensed
  • ultra-condensed
  • extra-condensed
  • semi-condensed
  • expanded
  • semi-expanded
  • extra-expanded
  • ultra-expanded
可選。定義如何拉伸字體。默認是 "normal"。 font-style
  • ormal
  • italic
  • oblique
可選。定義字體的樣式。默認是 "normal"。 font-weight
  • normal
  • bold
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900
可選。定義字體的粗細。默認是 "normal"。 unicode-range unicode-range 可選。定義字體支持的 UNICODE 字符范圍。默認是 "U+0-10FFFF"。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved