我从fontello下载了一个自定义图标字体,并打算在我的meteor应用程序中使用它。 我尝试了下载包附带的演示,字体显示正常。这是我的css:
@font-face {
font-family: 'fontello';
src: url('fonts/fontello.eot?98991264');
src: url('fonts/fontello.eot?98991264#iefix') format('embedded-opentype'),
url('fonts/fontello.woff?98991264') format('woff'),
url('fonts/fontello.ttf?98991264') format('truetype'),
url('fonts/fontello.svg?98991264#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
}
.icon-twitter:before { content: '\e805'; } /* '' */
.icon-github-circled:before { content: '\e804'; } /* '' */
.icon-pencil:before { content: '\e801'; } /* '' */
.icon-cancel:before { content: '\e802'; } /* '' */
.icon-chat:before { content: '\e800'; } /* '' */
我的文件夹结构与/client/css/styles.css
和字体/client/css/fonts/
在我的html中,我添加了这个标记<i class="icon-twitter"></i>
,不幸的是,当我查看页面时,我看到这就是我所看到的
任何帮助都会很棒。感谢
答案 0 :(得分:6)
如果要在your.domain.com/fonts/font_name.x
引用字体,则应将fonts
目录移至标有public
的目录。然后,您可以使用路径/fonts/font_name.x
访问它们。
请查看此处的非官方流星常见问题解答:https://github.com/oortcloud/unofficial-meteor-faq#where-should-i-put-my-files
public /#&lt; - 直接提供的静态文件,例如图像。
直接使用Meteor文档:http://docs.meteor.com/#structuringyourapp
最后,Meteor服务器将为公众提供任何文件 目录,就像在Rails或Django项目中一样。这是地方 对于图像,favicon.ico,robots.txt,以及其他任何内容。
答案 1 :(得分:0)
尝试使用绝对路径:
@font-face {
font-family: 'fontello';
src: url('/client/css/fonts/fontello.eot?98991264');
src: url('/client/css/fonts/fonts/fontello.eot?98991264#iefix') format('embedded-opentype'),
url('/client/css/fonts/fontello.woff?98991264') format('woff'),
url('/client/css/fonts/fontello.ttf?98991264') format('truetype'),
url('/client/css/fonts/fontello.svg?98991264#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
同样最好将字体存储在/public
中,因为在生产模式/client
中不再有效,您将再次获得这些正方形&amp;您可以改用/fonts/
(映射到/public/fonts
)
答案 2 :(得分:0)
我有同样的问题,我解决的方法是使用这些绝对路径:
@font-face {
font-family: 'icomoon';
src:url('/fonts/icomoon.eot');
src:url('/fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('/fonts/icomoon.woff') format('woff'),
url('/fonts/icomoon.ttf') format('truetype'),
url('/fonts/icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
直接在public / fonts /目录下。我猜MeteorJS很聪明,可以猜测路径。