- 政务民生-教育类目的资质授权文件是啥?
[图片] 这个 盖章主体 都包含哪些啊?
2023-02-28 - 加载自定义字体很慢?
基础库 2.10.4 app.js wx.loadFontFace({ global: true, family: 'pingfang', source: 'url("https://....")', success(res) { console.log("加载字体成功") } }) app.wxss font-family: "pingfang"; 1.会不必现的报错,但是字体仍会加载成功。 [图片] 2.进入页面后,字体先是默认字体, 过2-3秒,会变成自定义的字体,很明显。 求解。。。
2020-04-08 - 小程序css动画安卓卡,ios不卡
一个简单的动画,ios不卡,安卓有明显的卡顿 .cir1{ animation:mymove 2s infinite; } .cir2{ animation:mymove2 2s infinite; animation-delay: 0.5s; } .cir3{ animation:mymove3 2s infinite; animation-delay: 1.1s; } @keyframes mymove{ from{ opacity: 1; transform: scale(1,1) } to{ opacity: 0; transform: scale(2.5,2.5) } } @keyframes mymove2{ from{ opacity: 1; transform: scale(1,1) } to{ opacity: 0; transform: scale(2.5,2.5) } } @keyframes mymove3{ from{ opacity: 1; transform: scale(1,1) } to{ opacity: 0; transform: scale(2.5,2.5) } }
2018-09-18