css引用字体问题

html-css033

css引用字体问题,第1张

你在eot后面加一个?#iefix试试,我之前也做过css嵌入字体,而且各个浏览器测试也没什么问题,我当时的写法是这样的

@font-face

{

font-family:

'steiner'

src:

url('steiner.eot')

src:

url('steiner.eot?#iefix')

format('embedded-opentype'),

url('steiner.woff')

format('woff'),

url('steiner.ttf')

format('truetype'),

url('steiner.svg#steiner')

format('svg')

font-weight:

normal

font-style:

normal

}

你可以对比一下,另外可以看看在url里面加单引号会不会解决问题。

<!doctype html>

 <style type="text/css" media="screen, print">

    @font-face {

      font-family: "Automania"

      src: url("Automania.ttf")

    }

</style>

<script type="text/javascript">

function draw() {    

    var ctx = document.getElementById('shuipai').getContext('2d')    

    var img = new Image()    

    img.onload = function(){         

      ctx.drawImage(img,0,0)    

      ctx.beginPath()    

      ctx.fillStyle    = '#000'

      ctx.font         = "60px Automania"

      ctx.textBaseline = 'top'

      ctx.fillText('what this font looks', 0, 5)

      ctx.stroke()

    }

    img.src = 'http://dotnet.aspx.cc/Images/logoSite.gif'      

  }

</script>

<body>

 

<input onclick="draw()" type="button" value="test" />

<canvas id="shuipai" width="800" height="400"></canvas>

CSS中可以使用font-face属性即可实现调用任何外部等特殊字体。

font-face属性介绍及其实例:

对浏览器的支持:

Firefox、Chrome、Safari 以及 Opera 支持 .ttf (True Type Fonts) 和 .otf (OpenType Fonts) 类型的字体。

Internet Explorer 9+ 支持新的 font-face 规则,但是仅支持 .eot 类型的字体 (Embedded OpenType)。

使用您需要的字体。

在新的 font-face 规则中,您必须首先定义字体的名称(比如 myFirstFont),然后指向该字体文件。

如需为 HTML 元素使用字体,请通过 font-family 属性来引用字体的名称 (myFirstFont):

使用粗体字体。

您必须为粗体文本添加另一个包含描述符的 @font-face。

文件 "aa.ttf" 是另一个字体文件,它包含了 Sansation 字体的粗体字符。

只要 font-family 为 "myFirstFont" 的文本需要显示为粗体,浏览器就会使用该字体。

通过这种方式,我们可以为相同的字体设置许多 @font-face 规则。

实际案例:

案例1: <style> 

@font-face

{

font-family: myFirstFont

src: url('aa.ttf'),

     url('aa.eot') /* IE9+,可以是具体的实际链接 */

}

div

{

font-family:myFirstFont

}

</style> 案例2: @font-face

{

font-family: myFirstFont

src: url('aa.ttf'),

     url('aa.eot') /* IE9+ */

font-weight:bold

}

注意事项:

A、Internet Explorer 8 以及更早的版本不支持新的  font-face 规则。

B、代码中注意负符号,均为英文状态下。

C、字体文件格式必须添加后缀,且链接中必须带后缀。