How to introduce external fonts into a mini program

王林
Release: 2020-12-31 09:28:38
forward
2566 people have browsed it

How to introduce external fonts into a mini program

Preface:

In actual projects, sometimes we may need to use artistic fonts, so how do we introduce third-party artistic fonts?

(Learning video sharing:Programming video)

Artistic font as shown in the picture:

How to introduce external fonts into a mini program

Specific implementation :

Of course, you can also use WeChat API wx.loadFontFace directly. Please check the official sample document for details.

Introduce a set of third-party fonts (I only provide the third-party fonts shown in the picture above), there are many font libraries on the Internet. Write custom font styles in CSS files. transfer.

Specific demonstration code:

店内自取
Copy after login
/* 字体封装 */ @font-face { font-family: "blod"; src: url('https://static.heytea.com/taro_trial/v1/font/WenYue-XinQingNianTi-NC-W8_1.otf'); } /* END */ /* 使用 */ .main-title { font-family: 'blod'; font-size: 55rpx; padding-bottom: 20rpx; } /* END */
Copy after login

Achievement effect:

How to introduce external fonts into a mini program

##Related recommendations:

Small program development tutorial

The above is the detailed content of How to introduce external fonts into a mini program. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!