某些Icomoon图标无法显示

时间:2013-12-13 16:42:06

标签: css icons icon-fonts

我在应用程序中使用Icomoon - 我遇到了一些无法显示的图标问题。我已经通过Icomoon应用程序下载了所有图标,这是最新版本 - 所有450都被选中。

我已经尝试过一个没有其他CSS的空白页面,如果我的应用程序中出现了一些CSS,它们仍无法正常工作。

<link rel="stylesheet" type="text/css" href="/css/icons/icomoon/style.css" media="screen" />

<i class="icon-user"></i> User
<i class="icon-bars"></i> Bars
<i class="icon-search"><i> Search

在上面,条形显示正常但用户和搜索没有。

这是我的style.css文件(截断):

@font-face
{
    font-family: 'IcoMoon';
    src:url('fonts/icomoon.eot');
    src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
        url('fonts/icomoon.svg#IcoMoon') format('svg'),
        url('fonts/icomoon.woff') format('woff'),
        url('fonts/icomoon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], 
[class*=" icon-"]
{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

[class^="icon-"]:before, 
[class*=" icon-"]:before
{
    font-family: 'IcoMoon';
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
}

.icon-users:before {
    content: "\92";
}
.icon-bars:before {
    content: "\b8";
}
.icon-search:before {
    content: "\a0";
}

如果我打开icomoon.svg(我可以“编辑”的唯一一个),那么92和a0都在那里:

<glyph unicode="&#x92;" d="M734.994 154.626c-18.952 2.988-19.384 54.654-19.384 54.654s55.688 54.656 67.824 128.152c32.652 0 52.814 78.138 20.164 105.628 1.362 28.94 41.968 227.176-163.598 227.176-205.564 0-164.958-198.236-163.598-227.176-32.654-27.49-12.488-105.628 20.162-105.628 12.134-73.496 67.826-128.152 67.826-128.152s-0.432-51.666-19.384-54.654c-61.048-9.632-289.006-109.316-289.006-218.626h768c0 109.31-227.958 208.994-289.006 218.626zM344.054 137.19c44.094 27.15 97.626 52.308 141.538 67.424-15.752 22.432-33.294 52.936-44.33 89.062-15.406 12.566-27.944 30.532-35.998 52.602-8.066 22.104-11.122 46.852-8.608 69.684 1.804 16.392 6.478 31.666 13.65 45.088-4.35 46.586-7.414 138.034 52.448 204.732 23.214 25.866 52.556 44.46 87.7 55.686-6.274 64.76-39.16 140.77-166.454 140.77-205.564 0-164.958-198.236-163.598-227.176-32.654-27.49-12.488-105.628 20.162-105.628 12.134-73.496 67.826-128.152 67.826-128.152s-0.432-51.666-19.384-54.654c-61.048-9.634-289.006-109.318-289.006-218.628h329.596c4.71 3.074 9.506 6.14 14.458 9.19z" />

<glyph unicode="&#xa0;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />

此外,在从icomoon应用程序创建的demo html文件中,从7f(下载)到a0(搜索)的所有图标显示为空白 - 我尝试使用的图标都属于此范围。

知道为什么有些人会表现出来但其他人不会出现?

4 个答案:

答案 0 :(得分:1)

我在IE11和Edge中遇到的问题是显示的是大写变体而不是小写的图标。这是因为IE11 / edge在处理使用CSS的字符时会忽略大小写,而只是在字体文件中搜索第一个“匹配项”。

如您在这张图片中看到的,小写字母“ g”映射到垃圾桶图标,而大写字母“ G”映射到播放图标。 IE11和edge错误地使用了第一个大写形式。

您可以通过使用font forge检查字体文件,并在图标本身的CSS中显式声明一个“文本转换:小写/大写”并查看是否可以解决该问题,来测试这种可能的原因。

enter image description here

为最终解决此问题,我从图标字体中删除了所有大写字母,然后将所有内容重新映射到other unicode characters,并且一切正常。我在本文中找到了解决方案:Icon font behaving strangely in IE11

答案 1 :(得分:0)

答案 2 :(得分:0)

我找到了解决方案。我的问题是只有几个图标根本没有显示,但在打开zip上的html文件后,我看到那些相同的图标正确显示。所以我看到了html和css,并看到通过文件用于类的类来调用图标。第一个出现在@ font-face调用下面,它基本上设置了字体的样式和系列,字体正确显示所需的一切,所以调用这个类。下一个例子是使用我的类和icomoon字体文件。

@font-face {
     font-family:"icomoon";
     src: url('fonts/icomoon.eot');
@font-face {
     /*All the urls*/
}

/*THIS IS THE ONE YOU NEED TO CALL*/
.icomoon {
     font-family: "icomoon";
     speak: none;
     font-style: normal;
     font-weight: normal;
     font-variant: normal;
     text-transform: none;
     line-height: 1;
/*Better font rendering ======*/
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

答案 3 :(得分:0)

使用icomoon创建新图标时,您会在下载前获得预览。如果图标的标签为“多色&#39;不会显示。我在Illustrator中创建了一些图标并将它们导入到应用程序中。由于我的白色轮廓和白色背景,图标有点破碎,无法使用。

必须使用探路者来修复它们并使其只有一种颜色,同时使用线条笔划会杀死你的图标。