html2canvas

HTML 网页转换成截图

1
2
3
html2canvas(document.body).then(function(canvas) {
    document.body.appendChild(canvas);
});