버튼 클릭시, 현재 페이지 캡쳐하기 > jquery

본문 바로가기
사이트 내 전체검색

jquery

버튼 클릭시, 현재 페이지 캡쳐하기

페이지 정보

작성자 서방님 댓글 0건 조회 98회 작성일 22-03-17 17:18

본문

<button type="button" class="a_next ft" id="printScreenBtn">화면 캡쳐</button>

<script src="/webdata/js/html2canvas.js"></script>
<script type="text/javascript">
	$(document).ready(function(){
		$("#printScreenBtn").bind("click", function(){
			var canvasWidth = $(document).outerWidth();
			var canvasHeight = $("#wrap").outerHeight();
			let today = new Date();
			html2canvas(document.getElementById("wrap"), {scale: 1, useCORS: true,onclone: function(document) {

			}}).then(function(canvas) {
				var el = document.getElementById("downbtn");
				el.href = canvas.toDataURL("image/png");
				el.download = "play_result_manager_"+today.getFullYear()+today.getMonth()+today.getDate()+today.getHours()+today.getMinutes()+today.getSeconds()+".png";
				el.click();
				});
		});
	});
</script>

댓글목록

등록된 댓글이 없습니다.

Total 193건 1 페이지
게시물 검색

회원로그인

접속자집계

오늘
11
어제
51
최대
1,347
전체
153,641
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.