canvas 스크롤 처리
2021. 2. 10. 14:36ㆍHTML
canvas style로 처리하는 경우는 이미지의 비율이 깨지기 때문에 비추천
<div style='max-width:1000px;max-height:500px;overflow:auto;'>
<canvas width=3000 height=1000></canvas>
</div>
스크립트
divImage = document.getElementById('image')
divImage.style.maxWidth = (document.body.clientWidth - document.querySelector("#image_form > div").clientWidth - 150) + 'px'
divImage.style.maxHeight = (content_main.style.height.replace('px','') - 100) +'px'
divImage.style.overflow = 'auto'
'HTML' 카테고리의 다른 글
HTML 한글깨짐 (0) | 2024.12.01 |
---|---|
div 태그 조작하기 (0) | 2024.07.27 |
Canvas scrollbar 추가 (0) | 2021.02.08 |