我正在尝试使用FontAwesome图标集在NativeScript和Vue.js上构建应用程序,但由于我什至没有错误提示消息,所以无法解决问题。
我正在忠实地遵循文档,但没有任何反应。我到处搜索,但是什么都没有。
如果您能帮助我,我将非常感激。
文档:https://nativescript-vue.org/blog/using-fonticons/
谢谢!
解决方案
.fa { font-family: 'Font Awesome 5 Free', 'font-awesome/fa-regular-400'; }
.fas { font-family: 'Font Awesome 5 Free', 'font-awesome/fa-solid-900'; }
.fab { font-family: 'Font Awesome 5 Free', 'font-awesome/fa-brands-400'; }
font-family的第一部分是命名字体系列,并在逗号之后,我们将写出这些字体的路径。
答案 0 :(得分:3)
使用FontAwesome 4.7.0对我有用。 从5.0版开始,真棒字体的包装已更改,不再建议使用ttf,也许在nativescript-vue中使用真棒字体5.x更加棘手。
您可以在此处下载它:https://fontawesome.com/v4.7.0/
按照文档中的说明使用fontawesome-webfont.ttf并将其重命名为FontAwesome.ttf,也复制font-awesome.min.css
在您的app.scss中,请不要忘记这一点(字体系列是您的ttf文件的名称)
.fa {
font-family: FontAwesome;
}
请记住要在v4.7上检查您的图标名称,其中一些是v5中的新功能
在调试模式下,当您的应用启动时,您应该看到:
JS: 'Collections to load: fa'
JS: '----------'
JS: 'Loading collection \'fa\' from file: ./fonts/FontAwesome.css'
JS: 'fa-glass: \\uf000'
JS: 'fa-music: \\uf001'
JS: 'fa-search: \\uf002'
JS: 'fa-envelope-o: \\uf003'
...
答案 1 :(得分:3)
要使Brands和Pro FontAwesome 5字体在NativeScript-Vue中工作,请按照文档Using Fonticons中所述安装nativescript-fonticon
,npm install nativescript-fonticon --save
,
并从FontAwesome下载网络字体和桌面字体。在目录app/fonts
中,从Web下载的.ttf
目录中添加webfonts
个文件。 iOS还需要桌面下载的.otf
目录中的otfs
文件,因此也将它们添加到app/fonts
目录中,并重命名.otf
文件的基本名称以匹配.ttf
文件的相应基本名称
在app/assets
中,从Web字体下载的css
目录中添加相应的css文件(或全部文件)。
现在将以下内容添加到app.scss
中(请注意,如果未正确定义font-weight
,则光线和固体将无法正常工作)
.fa {
font-family: "Font Awesome 5 Pro", "fa-regular-400";
font-weight: 400;
}
.fas {
font-family: "Font Awesome 5 Pro", "fa-solid-900";
font-weight: 900;
}
.fab {
font-family: "Font Awesome 5 Brands", "fa-brands-400";
font-weight: 400;
}
.fal {
font-family: "Font Awesome 5 Pro", "fa-light-300";
font-weight: 300;
}
及以下main.ts
import {TNSFontIcon, fonticon} from 'nativescript-fonticon';
TNSFontIcon.debug = true;
TNSFontIcon.paths = {
// 'fa': './assets/css/all.min.css',
// 'fal': './assets/css/all.min.css',
// 'far': './assets/css/all.min.css',
// 'fas': './assets/css/all.min.css',
// 'fab': './assets/css/all.min.css',
'fa': './assets/css/fontawesome.min.css',
'fal': './assets/css/light.min.css',
'far': './assets/css/regular.min.css',
'fas': './assets/css/solid.min.css',
'fab': './assets/css/brands.min.css'
};
TNSFontIcon.loadCss();
Vue.filter('fonticon', fonticon);
现在删除platforms
目录以确保所有内容都正确捆绑在一起,您应该一切顺利。像这样使用
<StackLayout orientation="horizontal" horizontalAlignment="center" verticalAlignment="top">
<Label class="fab" :text="'fa-git' | fonticon" />
<Label class="fal" :text="'fa-plus-square' | fonticon" />
<Label class="fa" :text="'fa-plus-square' | fonticon" />
<Label class="fas" :text="'fa-plus-square' | fonticon" />
</StackLayout>
为了使事情变得更加简单,有一个插件Vue-Fonticon,它基本上是我复制到app/components/FontIcon.vue
中的以下代码
<template>
<Label
:class="type"
:color="color"
:fontSize="size"
:text="name | fonticon"
:width="size"
textAlignment="center"
@tap="$emit('tap')"
/>
</template>
<script>
export default {
name: 'FontIcon',
props: {
color: {
type: String,
default: 'black'
},
name: {
type: String,
required: true
},
size: {
type: [String, Number],
default: 15,
validation: s => !isNaN(s)
},
type: {
type: String,
default: 'fa'
}
}
}
</script>
要使用它,请在main.ts
中添加
import FontIcon from './components/Utility/FontIcon.vue'
Vue.component(FontIcon.name, FontIcon)
并将其用作
<StackLayout orientation="horizontal" horizontalAlignment="center" verticalAlignment="top">
<FontIcon name="fa-play"/>
<FontIcon name="fa-play" type="fal"/>
<FontIcon name="fa-play" type="fas"/>
<FontIcon name="fa-git" type="fab"/>
</StackLayout>