html page to screenshot

Solutions on MaxInterview for html page to screenshot by the best coders in the world

showing results for - "html page to screenshot"
Hannes
10 Aug 2017
1...
2<script>
3    function makeScreenshot() {
4        html2canvas(document.getElementById("screenshot"), {scale: 1}).then(canvas => {
5            document.body.appendChild(canvas);
6        });
7    }
8</script>
9</body>