主頁 > 知識(shí)庫(kù) > 用html5的canvas畫布繪制貝塞爾曲線完整代碼

用html5的canvas畫布繪制貝塞爾曲線完整代碼

熱門標(biāo)簽:臨海地圖標(biāo)注app 地圖標(biāo)注柱狀圖 小朱地圖標(biāo)注 咸陽穩(wěn)定外呼系統(tǒng)軟件 百度地圖標(biāo)注為什么總是封號(hào) 400開頭的電話好申請(qǐng)不 四川移動(dòng)電銷外呼客戶管理系統(tǒng) 智能芯電話機(jī)器人 怎么做百度地圖標(biāo)注
查看效果:http://keleyi.com/keleyi/phtml/html5/7.htm
完整代碼:

復(fù)制代碼
代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>用html5的canvas畫布繪制貝塞爾曲線</title>
</head>
<body>
<div>
<a target="_blank">原文</a></div>
<canvas id="keleyi_com" height="300" width="400"></canvas>
<script type="text/javascript">
function draw(id)
{
var canvas=document.getElementById(id);
if(canvas==null)
return false;
var context=canvas.getContext('2d');
context.fillStyle="#eeeeff";
context.fillRect(0,0,400,300);
var n=0;
var dx=150;
var dy=150;
var s=100;
context.beginPath();
context.globalCompositeOperation='and';
context.fillStyle='rgb(100,255,100)';
context.strokeStyle='rgb(0,0,100)';
var x=Math.sin(0);
var y=Math.cos(0);
var dig=Math.PI/15*11;
for(var i=0;i<30;i++)
{
var x=Math.sin(i*dig);
var y=Math.cos(i*dig);
context.bezierCurveTo(dx+x*s,dy+y*s-100,dx+x*s+100,dy+y*s,dx+x*s,dy+y*s);
}
context.closePath();
context.fill();
context.stroke();
}
draw("keleyi_com");
</script>
</body>
</html>

標(biāo)簽:黃石 南平 山南 黃石 陜西 平頂山 公主嶺 巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用html5的canvas畫布繪制貝塞爾曲線完整代碼》,本文關(guān)鍵詞  用,html5,的,canvas,畫布,繪制,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(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)民參考!
  • 推薦文章