html怎么显示直线,html怎么用鼠标画出一条直线,鼠标移动时候要能看到线条
該樓層疑似違規已被系統折疊?隱藏此樓查看此樓
window.onload = function(){
var oC = document.getElementById('c1');
var oGC = oC.getContext('2d');
oC.onmousedown = function(ev){
var ev = ev || window.event;
oGC.beginPath();
oGC.moveTo(ev.clientX-oC.offsetLeft,ev.clientY-oC.offsetTop);
document.onmousemove = function(ev){
var ev = ev || window.event;
// oGC.lineTo(ev.clientX-oC.offsetLeft,ev.clientY-oC.offsetTop);
// oGC.closePath();
// oGC.stroke();
};
document.onmouseup = function(){
var ev = ev || window.event;
oGC.lineTo(ev.clientX-oC.offsetLeft,ev.clientY-oC.offsetTop);
oGC.stroke();
document.onmousemove = null;
document.onmouseup = null;
};
};
};
總結
以上是生活随笔為你收集整理的html怎么显示直线,html怎么用鼠标画出一条直线,鼠标移动时候要能看到线条的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android音频调制通讯,androi
- 下一篇: 华为有了鸿蒙就可以翻身吗,鸿蒙2.0要来