久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

javascript+Canvas實(shí)現(xiàn)畫(huà)板功能

瀏覽:34日期:2023-06-20 08:58:15

本文實(shí)例為大家分享了Canvas實(shí)現(xiàn)畫(huà)板功能的具體代碼,供大家參考,具體內(nèi)容如下

CSS樣式代碼

body, html { text-align: center; padding-top: 20px; /*margin: 0;*/ }canvas { box-shadow: 0 0 10px #333; margin: 0 auto; /*position: absolute; left: 0; border: 1px solid red;*/}

這是主體代碼

<body onload='draw()'> <canvas height='600'> </canvas> <script> function draw() { var canvas = document.getElementById('canvas'); if (canvas.getContext) { var ctx = canvas.getContext(’2d’); //涂鴉 //添加鼠標(biāo)按下事件 canvas.onmousedown=function(e){ var ev=e||window.event;//兼容性 var x=ev.clientX-canvas.offsetLeft; var y=ev.clientY-canvas.offsetTop; ctx.strokeStyle=’red’; ctx.lineWidth=10; ctx.beginPath(); ctx.moveTo(x,y); //onmousemove canvas.onmousemove=function(e){ var ev=e||window.event;//兼容性 var x=ev.clientX - canvas.offsetLeft; var y=ev.clientY - canvas.offsetTop; ctx.lineTo(x,y); ctx.stroke(); } canvas.onmouseup=function(){ canvas.onmousemove='';//當(dāng)鼠標(biāo)不點(diǎn)擊時(shí)則不會(huì)畫(huà)畫(huà) } } } }</script></body>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 马关县| 大丰市| 东方市| 英山县| 渭南市| 滕州市| 贵港市| 教育| 文安县| 科技| 习水县| 肃北| 新泰市| 凤台县| 军事| 靖西县| 海晏县| 库伦旗| 栾城县| 娄烦县| 大悟县| 托克逊县| 讷河市| 建水县| 金溪县| 常熟市| 长顺县| 新昌县| 双流县| 辰溪县| 定陶县| 龙游县| 凤庆县| 措美县| 萨嘎县| 金阳县| 渝北区| 南宫市| 通山县| 绥芬河市| 盘山县|