vue使用 Font 字体 .ttf 格式
在assets的 styles创建俩个文件夹 一个font 和 ttf字体.ttf 就放在ttf里面在font 文件夹里创建 log.css@font-face {font-family: "pmzd";//自定义字体名称src: url('../ttf/书体名.ttf') format('truetype');font-weight: normal;font-style: normal;}在 m
·
在assets的 styles 创建俩个文件夹 一个font 和 ttf
字体.ttf 就放在ttf里面
在font 文件夹里创建 log.css
@font-face {
font-family: "pmzd";//自定义字体名称
src: url('../ttf/书体名.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
在 main.js 引入import './assets/styles/font/log.css'
在使用的页面引入
@import url('../../assets/styles/font/log.css');
然后使用即可
<style lang="scss" scoped>
@import url('../../assets/styles/font/log.css');
.logFont{
font-family: 'pmzd';
font-size: 36px;
color: #0066FF;
margin-left: 40%;
margin-top: 1%;
}
</style>
更多推荐
已为社区贡献2条内容
所有评论(0)