清除没有画布的HTML页面

问题描述 投票:0回答:1

我想知道是否有什么方法可以在不使用画布的情况下清除一个HTML页面。

我试图用JavaScript制作一个简单的程序,不使用画布,从窗口的中心到鼠标指向的地方画一条线。无论何时何地鼠标移动,我都能成功地画出一条新的线,但不知道如何在不制作画布的情况下清除页面,并用 clearRect().

有什么办法可以在没有画布的情况下清除页面?

如果有人觉得有帮助,这是我的代码。

      window.addEventListener('mousemove', function (e){
      linedraw(window.innerWidth/2, window.innerHeight/2, e.x, e.y)
      });

      function linedraw(x1, y1, x2, y2) {
    if (x2 < x1) {
        tmp = x2 ; x2 = x1 ; x1 = tmp
        tmp = y2 ; y2 = y1 ; y1 = tmp
    }

    lineLength = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2));
    m = (y2 - y1) / (x2 - x1)

    degree = Math.atan(m) * 180 / Math.PI

    document.body.innerHTML += "<div class='line' style='transform-origin: top left; transform: rotate(" + degree + "deg); width: " + lineLength + "px; height: 1px; background: black; position: absolute; top: " + y1 + "px; left: " + x1 + "px;'></div>"
}
javascript canvas refresh
1个回答
0
投票

而不是附加一个新的 div,只需在每次鼠标移动时替换html即可。

window.addEventListener('mousemove', function (e){
    linedraw(window.innerWidth/2, window.innerHeight/2, e.x, e.y)
});

function linedraw(x1, y1, x2, y2) {
    if (x2 < x1) {
        tmp = x2 ; x2 = x1 ; x1 = tmp
        tmp = y2 ; y2 = y1 ; y1 = tmp
    }

    lineLength = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2));
    m = (y2 - y1) / (x2 - x1)

    degree = Math.atan(m) * 180 / Math.PI

    // `document.body.innerHTML = ` instead of `document.body.innerHTML += `
    document.body.innerHTML = "<div class='line' style='transform-origin: top left; transform: rotate(" + degree + "deg); width: " + lineLength + "px; height: 1px; background: black; position: absolute; top: " + y1 + "px; left: " + x1 + "px;'></div>"
}
© www.soinside.com 2019 - 2024. All rights reserved.