
H5
文章平均质量分 50
蓝色六一
vue、小程序方向
展开
-
h5自动弹出ios键盘
Android autofocus自动聚焦弹出 IOS 脚本无法直接调出ios键盘(处于安全考虑),只能通过行为事件来聚焦,行为事件:点击、触屏等人为操作。 示例 行为聚焦 html <input id="ipt" autofocus="autofocus"></input> <button id="box"> click me !</button> JavaScript document.getElementById("box").onclick原创 2021-07-27 12:07:25 · 2534 阅读 · 0 评论 -
canvas画圆角矩形
// (x,y):圆角矩形起始坐标; width: 矩形宽度; height: 矩形高度; r: 矩形圆角; draw(ctx, x, y, width, height, r){ ctx.beginPath(); ctx.moveTo(x + r, y); ctx.fillStyle = "rgb(61, 193, 254)";//矩形填充颜色 ctx.lineTo(x + wid...原创 2019-08-14 18:47:08 · 1287 阅读 · 2 评论