html to image 把 html 转换为图片

Lenix at 
html to image 把 html 转换为图片要显示的内容$(document).ready(function () {setTimeout(function(){downloadImage();},1000)});functiondownloadImage(){html2canvas(document.querySelector("#loginbox")).then(canvas=> {a = document.createElement('a');document.body.appendChild(a);a.download = "test.png";a.href = canvas.……