Javascript HTML5 Canvas實(shí)現(xiàn)的一個(gè)畫板
更新時(shí)間:2020年04月12日 11:13:42 作者:suvllian
這篇文章主要為大家詳細(xì)介紹了Javascript HTML5 Canvas實(shí)現(xiàn)的一個(gè)畫板的相關(guān)資料,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
本文實(shí)例為大家分享了HTML5 Canvas實(shí)現(xiàn)的一個(gè)畫板代碼,供大家參考,具體內(nèi)容如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DEMO6:自定義畫板</title>
</head>
<body>
<canvas id="canvas" width="600" height="300">
瀏覽器不支持canvas <!-- 如果不支持會(huì)顯示這段文字 -->
</canvas>
<br/>
<button style="width:80px;background-color:yellow;" onclick='linecolor="yellow";'>YELLOW</button>
<button style="width:80px ;background-color:red;" onclick='linecolor="red";'>RED</button>
<button style="width:80px ;background-color:blue;" onclick='linecolor="blue";'>BLUE</button>
<button style="width:80px ;background-color:green;" onclick='linecolor="green";'>GREEN</button>
<button style="width:80px ;background-color:white;" onclick='linecolor="white";'>WHITE</button>
<button style="width:80px ;background-color:black;" onclick='linecolor="black";'>BLACK</button>
<br/>
<button style="width: 80px;background-color: white;" onclick="linw=4;">4PX</button>
<button style="width: 80px;background-color: white;" onclick="linw=8;">8PX</button>
<button style="width: 80px;background-color: white;" onclick="linw=16;">16PX</button>
<br/>
<button style="width: 80px;background-color: white;" onclick="copyimage();">EXPORT</button>
<br/>
<img src="" id="image_png" width="600px" height="300px">
<br/>
<script type="text/javascript">
var canvas = document.getElementById('canvas'); //獲取標(biāo)簽
var ctx = canvas.getContext("2d");
var fillStyle = "black";
ctx.fillRect(0,0,600,300);
var onoff = false; //按下標(biāo)記
var oldx = -10;
var oldy = -10;
//設(shè)置顏色
var linecolor = "white";
var linw = 4;
canvas.addEventListener("mousemove",draw,true); //鼠標(biāo)移動(dòng)事件
canvas.addEventListener("mousedown",down,false); //鼠標(biāo)按下事件
canvas.addEventListener("mouseup",up,false); //鼠標(biāo)彈起事件
function down(event){
onoff = true;
oldx = event.pageX - 10;
oldy = event.pageY - 10;
}
function up(){
onoff = false;
}
function draw(event){
if (onoff==true) {
var newx = event.pageX - 10;
var newy = event.pageY - 10
ctx.beginPath();
ctx.moveTo(oldx,oldy);
ctx.lineTo(newx,newy);
ctx.strokeStyle = linecolor;
ctx.lineWidth = linw;
ctx.lineCap = "round";
ctx.stroke();
oldx = newx;
oldy = newy;
}
}
function copyimage(event)
{
var img_png_src = canvas.toDataURL("image/png"); //將畫板保存為圖片格式的函數(shù)
document.getElementById("image_png").src = img_png_src;
}
</script>
</body>
</html>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。
您可能感興趣的文章:
- js+canvas實(shí)現(xiàn)畫板功能
- JS實(shí)現(xiàn)canvas簡(jiǎn)單小畫板功能
- javascript+Canvas實(shí)現(xiàn)畫板功能
- javascript實(shí)現(xiàn)畫板功能
- javascript簡(jiǎn)易畫板開發(fā)
- JS基于ocanvas插件實(shí)現(xiàn)的簡(jiǎn)單畫板效果代碼(附demo源碼下載)
- html5+javascript制作簡(jiǎn)易畫板附圖
- 純js網(wǎng)頁(yè)畫板(Graphics)類簡(jiǎn)介及實(shí)現(xiàn)代碼
- 用javascript實(shí)現(xiàn)畫板的代碼
- JS canvas實(shí)現(xiàn)畫板和簽字板功能
相關(guān)文章
JS數(shù)組方法reverse()用法實(shí)例分析
這篇文章主要介紹了JS數(shù)組方法reverse()用法,結(jié)合實(shí)例形式分析了JS數(shù)組reverse()方法基本功能、用法與操作注意事項(xiàng),需要的朋友可以參考下2020-01-01
JS實(shí)現(xiàn)按鈕控制計(jì)時(shí)開始和停止功能
這篇文章給大家介紹了JS實(shí)現(xiàn)按鈕控制計(jì)時(shí)開始和停止功能,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧2017-07-07
微信小程序mpvue點(diǎn)擊按鈕獲取button值的方法
這篇文章主要介紹了小程序mpvue點(diǎn)擊按鈕獲取button值的方法,本文通過(guò)兩種方法,給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-05-05
js通過(guò)location.search來(lái)獲取頁(yè)面?zhèn)鱽?lái)的參數(shù)
js獲取通過(guò)window.location.search來(lái)獲取頁(yè)面?zhèn)鱽?lái)的參數(shù),經(jīng)測(cè)試可用,大家可以學(xué)習(xí)下
2014-09-09
js中console在一行內(nèi)打印字符串和對(duì)象的方法
這篇文章主要介紹了js中console在一行內(nèi)打印字符串和對(duì)象的方法,本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
2019-09-09 
