width(3)
-
div style 셋팅시 주의 점
width, height 셋팅시 'px'을 넣지 않으면 적용되지 않음
2021.02.03 -
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