【笔记】HTML页面任意位置截图

【笔记】HTML页面任意位置截图

huhuan
2022-03-28 / 0 评论 / 218 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>页面截图</title>
</head>

<body>
    <div id="capture" style="padding: 10px;background: #f5da55;width: 300px;height: 300px;text-align: center;">
        <h4 style="color: #000; ">Hello world!</h4>
        <!-- 图片不支持外链 -->
        <img src="/iot.svg" alt="">
    </div>
    <hr>

    <script type="text/javascript" src="http://html2canvas.hertzen.com/dist/html2canvas.js"></script>
    <script>
        html2canvas(document.querySelector("#capture")).then(canvas => {
            document.body.appendChild(canvas)
        });
    </script>
</body>

</html>
0

海报

正在生成.....

评论 (0)

语录
取消