标签:技术 span clock 大小 alt tab adp 微信小程序 height
画布提供了一种可以创建圆的方法
arc(x, y, r, s, e, counterclockwise)
原图 截取之后的图
首先确定图片位置x和y值,然后确定图片大小,r就为图片一半,因为图片起始点是(x,y),所以圆心的位置为(x+r,y+r)
var headpic =‘../../../images/tabBar_two/dynamic.png‘; ctx.beginPath() ctx.arc(20+60, 20+60, 60, 0, 2 * Math.PI); ctx.fill(); ctx.clip() //剪切形状 ctx.drawImage(headpic, 20, 20, 120, 120); ctx.draw();
标签:技术 span clock 大小 alt tab adp 微信小程序 height
原文地址:https://www.cnblogs.com/dongzhi1111/p/10874818.html