Canvas(5)
-
canvas 스크롤 처리
canvas style로 처리하는 경우는 이미지의 비율이 깨지기 때문에 비추천 스크립트 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'
2021.02.10 -
Canvas scrollbar 추가
div 태그에 싸서 넣으면 해결됨 로 하면 원하는 결과 안 나옴
2021.02.08 -
canvas width, heigth 셋팅시 주의점
context 정의 전에 width, heigth를 변경해야 적용됨 [좋은 예] canvas = document.getElementById('box') canvas.width = img.width canvas.height = img.height context = canvas.getContext('2d') [나쁜 예] canvas = document.getElementById('box') context = canvas.getContext('2d') canvas.width = img.width canvas.height = img.height
2021.02.03 -
canvas size가져오기, resize
function large() { console.log('변경전: ', $('#temp').width()) $('#temp').width(300) console.log('변경후: ', $('#temp').width()) }
2021.01.23 -
id가 없는 canvas 찾아서 id 셋팅하기
current stock price: $3.15 +0.15
2021.01.23