40 lines
901 B
HTML
40 lines
901 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<script src="./dom-to-image.min.js"></script>
|
|
<style>
|
|
*{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-size: 0px;
|
|
}
|
|
#imgs{
|
|
display: inline-block;
|
|
|
|
}
|
|
#imgs div{
|
|
background: #4D7BFF;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="page" id="imgs">
|
|
<div >设备001</div>
|
|
</div>
|
|
<script>
|
|
domtoimage.toPng(document.getElementById('imgs'))
|
|
.then(dataUrl => {
|
|
console.log(dataUrl)
|
|
})
|
|
.catch(error => console.error('转换失败', error));
|
|
|
|
</script>
|
|
</body>
|
|
</html> |