html 5キャンバスプロパティおよびショートカットモジュール

1143 ワード

ラウンド長方形関数の作成:
 1 var rounderRect=function(x,y,w,h,r){
 2   context.beginPath();
 3   context.moveTo(x,y+r);
 4   context.arcTo(x,y,x+w,y,r);
 5   context.arcTo(x+w,y,x+w,y+h,r);
 6   context.arcTo(x+w,y+h,x,y+h,r);
 7   context.arcTo(x,y+h,x,y,r);
 8   context.closePath();
 9   context.stroke();
10 };

 
転載先:https://www.cnblogs.com/wlxll/p/5950845.html