- 请问小程序蓝牙之间是可以互相传输文件吗
请问2个小程序蓝牙之间可以互相传输文件吗
2021-08-30 - 一个小程序可以请求多个不同域名的服务器吗?
一个小程序可以请求多个不同域名的服务器吗?
2021-05-14 - wx.loadFontFace 怎么在手机上是临时文件呢,小程序被关闭就被清理了
wx.loadFontFace 怎么在手机上是临时文件呢,小程序被关闭就被清理了,下次启动又需要重新加载字体,不可以用本地文件缓存吗
2021-05-08 - wx.loadFontFace(Object object)请问这个放到手机缓存哪个位置?可以放多大
wx.loadFontFace(Object object)请问这个放到手机缓存哪个位置?可以放多大
2021-05-06 - wx.loadFontFace 请问这个请求时间多少多少呢,20s超时
[图片] [图片]
2021-04-30 - 自字议字体存储位置,怎样确保字体文件,可以较长期保存呢???
自字议字体存储位置,怎样确保字体文件,可以较长期保存?我这边看到动态字体切换页面每次都重新加载字体,比较耗费流量,没有缓存吗?
2021-04-28 - wx.loadFontFace 自定义字体问题
ctx.font ="20px Arial,error" 其中Arial不支持中文,没有用后面的字体error,好像是默认字体了 [图片]
2021-04-28 - 自定义字体存放到哪里
请问自定义字体存放到哪里?为什么全局定义,每个页面都会重新加载呢,
2021-04-26 - canvas 2d width大于1365px 就绘画不了
https://developers.weixin.qq.com/s/ltk33MmD7ipC <text>canvas 2d width大于1365 就绘画不了 </text> <text>width: 1365px</text> <canvas type="2d" id="canvas" class="canvas" style="width: 1365px; height: 200px; border: 2rpx solid greenyellow;" ></canvas> <text>width: 1366px 不支持</text> <canvas type="2d" id="canvasTwo" class="canvas" style="width: 1366px; height: 200px; border: 2rpx solid blue;" ></canvas> onReady: function () { const queryTwo = wx.createSelectorQuery() queryTwo.select('#canvas') .fields({ node: true, size: true }) .exec((res) => { console.log(res) const canvas = res[0].node var ctx = canvas.getContext('2d') console.log(ctx) const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = res[0].width * dpr canvas.height = res[0].height * dpr ctx.scale(dpr, dpr) ctx.clearRect(0,0,canvas.width,canvas.height); ctx.font="20px Georgia"; ctx.fillText("Hello World!",10,50); ctx.font="30px Verdana"; // 创建一个渐变 var gradient=ctx.createLinearGradient(0,0,canvas.width,0); gradient.addColorStop("0","magenta"); gradient.addColorStop("0.5","blue"); gradient.addColorStop("1.0","red"); // 填充一个渐变 ctx.fillStyle=gradient; ctx.fillText("Big smile!",10,90); ctx.fillText("Big smile!",10,120); ctx.fillText("Big smile!",160,90); // ctx.restore(); ctx.save(); const query = wx.createSelectorQuery() query.select('#canvasTwo') .fields({ node: true, size: true }) .exec((res) => { console.log(res) const canvas1 = res[0].node const ctx1 = canvas1.getContext('2d') const dpr2 = wx.getSystemInfoSync().pixelRatio canvas1.width = res[0].width * dpr2 canvas1.height = res[0].height * dpr2 ctx.scale(dpr, dpr) ctx1.fillText("Big smile!",10,90); ctx1.fillText("Big smile!",10,120); ctx1.fillText("Big smile!",160,90); }) }) },
2021-04-23 - canvas 2d width最大是多少呢,这边width:1536,height:64绘画2个不行
heightcanvas 2d width最大是多少呢,这边width:1536,height:64绘画2个不行,
2021-04-23