DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5特效代碼 >> clearRect清除html5畫布
clearRect清除html5畫布
編輯:HTML5特效代碼     
html5 canvas 清除可以使用clearRect() 方法

clearRect() 方法的作用是清空給定矩形內的指定像素。
JavaScript 語法:
context.clearRect(x,y,width,height);

x 要清除的矩形左上角的 x 坐標
y 要清除的矩形左上角的 y 坐標
width 要清除的矩形的寬度,以像素計
height 要清除的矩形的高度,以像素計


<!DOCTYPE html>
<html>
<body>

<canvas id="myCanvas_keleyi_com" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>

<script>

var c=document.getElementById("myCanvas_ke"+"leyi_com");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(0,0,300,150);
ctx.clearRect(20,20,100,50);

</script>

</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved