gpt4 book ai didi

font-face - 自定义字体未在 ionic 框架中加载

转载 作者:行者123 更新时间:2023-12-04 09:47:39 25 4
gpt4 key购买 nike

我想在我的 Ionic 项目中应用 Open Sans 字体。我在我的自定义 scss 文件(settings.sccs 和其他 scss 文件)所在的 SCSS 文件夹中使用了此代码( demoProject\scss_setting.scss )

@font-face {
font-family: 'Open Sans';
src: url('../www/fonts/opensans-regular-webfont.eot');
src: url('../www/fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../www/fonts/opensans-regular-webfont.woff') format('woff'),
url('../www/fonts/opensans-regular-webfont.ttf') format('truetype'),
url('../www/fonts/opensans-regular-webfont.svg') format('svg');
font-weight: 200;
}
body{
font-family: 'Open Sans';
}

字体位于此处( demoProject\www\fonts )

并尝试应用于全身,但浏览器的控制台显示
 GET http://localhost:8100/www/fonts/opensans-regular-webfont.woff 
:8100/www/fonts/opensans-regular-webfont.ttf:1
GET http://localhost:8100/www/fonts/opensans-regular-webfont.ttf

最佳答案

我相信您在目录链中走得太远了。

我想你想要更像这样的东西:

@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans-regular-webfont.eot');
src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/opensans-regular-webfont.woff') format('woff'),
url('../fonts/opensans-regular-webfont.ttf') format('truetype'),
url('../fonts/opensans-regular-webfont.svg') format('svg');
font-weight: 200;
}
body{
font-family: 'Open Sans';
}

这是将 Font Awesome 添加到您的项目中的教程,它是一种自定义字体:

https://www.thepolyglotdeveloper.com/2014/10/use-font-awesome-glyph-icons-ionicframework/

如果这对您有帮助,请告诉我。

问候,

关于font-face - 自定义字体未在 ionic 框架中加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27330699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com