码迷,mamicode.com
首页 > 其他好文 > 详细

图标字体

时间:2014-10-21 19:07:04      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

有时页面上要用到一些小图标,按以前的方法在网上搜图片下载再应用到页面上的效率会比较低,效果也不怎么好。可以考虑用css3的font-face属性,它可以把我们自定义的Web字体或图标字体嵌入到你的网页中,我们可以通过设置font-size来设置图标的大小。非常的简单和方便。

https://icomoon.io/app/#/select    和    http://fontello.com/这两个网站都是免费Web-font 图标大集合。

在网上下载自己的图标字体集,导入引用再修改一下就可以用啦

bubuko.com,布布扣
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        @font-face {
            font-family: ‘ff‘;
            src:url(‘fonts/ff.eot?l6gayx‘);
            src:url(‘fonts/ff.eot?#iefixl6gayx‘) format(‘embedded-opentype‘),
            url(‘fonts/ff.woff?l6gayx‘) format(‘woff‘),
            url(‘fonts/ff.ttf?l6gayx‘) format(‘truetype‘),
            url(‘fonts/ff.svg?l6gayx#ff‘) format(‘svg‘);
            font-weight: normal;
            font-style: normal;
        }
        .icon{
            font-family: ‘ff‘;
            font-size: 30px;
        }
        .box{
            margin: 20px auto;
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="box">
        <span class="icon">b</span>
        <span class="icon">e</span>
        <span class="icon">f</span>
    </div>
</body>
</html>
View Code

 

图标字体

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/jellyAndjammy/p/4040932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!