@font-face 的用法

时间:2023-11-25 23:32:26

现在很多设计用的字体都是五花八门的。我们切图又不能很好的让搜索爬虫搜索。就会使用@font-face方法:

@Font-face目前浏览器的兼容性:

Webkit/Safari(3.2+):TrueType/OpenType TT (.ttf) 、OpenType PS (.otf);
•Opera (10+): TrueType/OpenType TT (.ttf) 、 OpenType PS (.otf) 、 SVG (.svg);
•Internet Explorer: 自ie4开始,支持EOT格式的字体文件;ie9支持WOFF;
•Firefox(3.5+): TrueType/OpenType TT (.ttf)、 OpenType PS (.otf)、 WOFF (since Firefox 3.6)
•Google Chrome:TrueType/OpenType TT (.ttf)、OpenType PS (.otf)、WOFF since version 6
由上面可以得出:.eot + .ttf /.otf + svg + woff = 所有浏览器的完美支持。

在这里介绍一个网站,专门用于将字体转格式的在线网站。

http://www.fontsquirrel.com/tools/webfont-generator

在网站将字体上传,然后转换下载就可以使用了。

<style>
        @font-face {
                    font-family: 'kunstler_scriptregular';
                    src: url('font/kunstler-webfont.eot');
                    src: url('font/kunstler-webfont.eot?#iefix') format('embedded-opentype'),
                         url('font/kunstler-webfont.woff2') format('woff2'),
                         url('font/kunstler-webfont.woff') format('woff'),
                         url('font/kunstler-webfont.ttf') format('truetype'),
                         url('font/kunstler-webfont.svg#kunstler_scriptregular') format('svg');
                    font-weight: normal;
                    font-style: normal;

                }
        .new{
            font-family:kunstler_scriptregular;
        }
        *{
            font-size:30px;
        }
    </style>
</head>
<body>
        <ul>
            <li><a href="#" target="_blank">首页</a></li>
            <li><a href="#" target="_blank">关于我们</a></li>
            <li><a href="#" target="_blank">登录注册</a></li>
            <li class="new"><a>you are pig</a></li>
        </ul>
</body>

截图:

@font-face 的用法

转换界面

@font-face 的用法

下载到本地解压后

@font-face 的用法

实际效果