、、、、、、、、、、、仅对以前所学做复习记录使用、、、、、、、、、
favicon图标可以是PNG、JPG、ico格式的,大部分网站兼容ico格式的。图标大小一般是:16x16 32x32
一、先新建一个HTML文件,名字随意起,例如templateH5.html。
进入官网,复制官网的基本模板所有内容到templateH5.html:https://uniapp.dcloud.io/collocation/manifest?id=h5-template
二、在uniapp中找到manifest.json------h5配置-----模板路径;将建好的templateH5.html浏览路径连接上(一定要浏览具体路径)。
三、在templateH5.html中的head标签下,写入以下:
<link rel="icon" href="./static/image/fenlei.png" />
// rel是icon; href是你需要的图标的路径;只要是在head标签下就行。