HTML 요소를 캡처하는 방법
12430 단어 webhtmlcssjavascript
시작하자👀
이 작업을 수행하기 위해 오픈 소스html2canvas 라이브러리를 사용합니다.
<head>
html 문서의 태그
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js">
</script>
(다음 코드 예제 참조)
<!DOCTYPE html>
<html>
<head>
<title>Capture an html element and save it as image</title>
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js">
</script>
</head>
<body>
</body>
</html>
<style>
우리의
<head>
우리가 캡처하는 예제 요소의 스타일일 뿐인 태그
body {
margin-top: 40px;
font-family: Arial, Helvetica, sans-serif;
}
a:link:hover {
text-decoration: none;
}
#capture-frame {
width: 500px;
margin: auto auto;
display: flex;
color: black;
font-size: 16px;
font-weight: bold;
height: 300px;
border: 4px solid black;
}
.screen-1 {
background: red;
width: 100%;
text-align: center;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
border-right: 1px solid yellow;
}
.screen-1:hover, .screen-2:hover {
color: white;
}
.screen-2 {
background: green;
width: 100%;
text-align: center;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
h3 {
text-align: center;
font-weight: bold;
padding-bottom: 100px;
text-transform: uppercase;
}
.button {
margin: 0 auto;
text-align: center;
padding: 50px 0;
}
.button button {
border: 1px solid black;
padding: 6px;
font-weight: bold;
font-size: 14px;
outline: none;
cursor: pointer;
}
.button button:hover {
background-color: lightblue;
}
body
꼬리표
<h3>Capturing html element example
<br />by using the
<a href="https://html2canvas.hertzen.com/">
html2canvas
</a>
library
</h3>
<div class="button">
<button type="button"
onclick="saveAsImage()">Capture
</button>
</div>
<div id="capture-frame">
<div class="screen-1"><span>Element 1 </span></div>
<div class="screen-2"><span>Element 2 </span></div>
</div>
<body/>
꼬리표
function saveAsImage() {
const findEl = document.getElementById('capture-frame')
html2canvas(findEl).then((canvas) => {
const link = document.createElement('a')
document.body.appendChild(link)
link.download = "cmp-image.jpg"
link.href = canvas.toDataURL()
link.click()
link.remove()
})
}
최종 참고 사항:
현재 예제는 버튼 클릭으로 HTML 요소를 캡처하는 것을 보여주고 있지만 이것은 예를 들어 필요에 따라 사용자 정의할 수 있습니다(일부 조치 또는 간격을 기반으로 하는 이벤트 리스너).
작업example 을 보거나 github repo 을 방문하십시오.
나에 대한 질문이나 정보가 있으면 다음 qr 코드를 스캔하거나 클릭하여 연락할 수 있습니다.
게시물은 Delovski.net Blog에 처음 게시되었습니다.
Reference
이 문제에 관하여(HTML 요소를 캡처하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/kiril6/how-to-capture-an-html-element-1oa
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(HTML 요소를 캡처하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kiril6/how-to-capture-an-html-element-1oa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)