主頁 > 知識庫 > HTML5 Canvas鋸齒圖代碼實例

HTML5 Canvas鋸齒圖代碼實例

熱門標(biāo)簽:智能芯電話機器人 百度地圖標(biāo)注為什么總是封號 臨海地圖標(biāo)注app 怎么做百度地圖標(biāo)注 400開頭的電話好申請不 地圖標(biāo)注柱狀圖 四川移動電銷外呼客戶管理系統(tǒng) 小朱地圖標(biāo)注 咸陽穩(wěn)定外呼系統(tǒng)軟件

效果圖:

提示:把代碼復(fù)制到一個html文件中并保存,直接打開即可看到效果。

實現(xiàn)代碼:

復(fù)制代碼
代碼如下:
<!doctype html>
<html lang="zh">
<head>
<meta charset="gbk">
<title>鋸齒圖</title>
<script type="text/javascript">
window.addEventListener("load", eventWindowLoaded, false);
function eventWindowLoaded(){
var x,y;
var theCanvas = document.getElementById("canvas");
var context = theCanvas.getContext("2d");

//Box
context.strokeStyle = '#00f';
context.lineWidth=10;
context.strokeRect(0, 0, theCanvas.width-0, theCanvas.height-0);
context.fillStyle = "#00f";
for(x=5;x<=canvas.width;x=x+10){
context.beginPath();
context.arc(x,5,5,0,Math.PI,false);
context.closePath();
context.fill();
context.beginPath();
context.arc(x,canvas.height-5,5,0,Math.PI,true);
context.closePath();
context.fill();
}
for(y=5;y<=canvas.height;y=y+10){
context.beginPath();
context.arc(5,y,5,0,Math.PI*2,true);
context.arc(canvas.width-5,y,5,0,Math.PI*2,true);
context.closePath();
context.fill();
}
}
</script>
</head>
<body>
<div style="position: absolute; top: 100px; left: 100px;">
<canvas id="canvas" width="300" height="300">
</div>
</body>
</html>

標(biāo)簽:黃石 山南 公主嶺 陜西 黃石 平頂山 南平

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML5 Canvas鋸齒圖代碼實例》,本文關(guān)鍵詞  HTML5,Canvas,鋸齒,圖,代碼,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML5 Canvas鋸齒圖代碼實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML5 Canvas鋸齒圖代碼實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章