Javascript/jQuery(9)
-
canvas 확대/축소
jQuery를 사용해서 변경해야 canvas가 실제 사이즈가 변경되지 않고, 보이기에만 확대/축소됨 $('#box').width(canvas.width*zoom)
2021.02.12 -
.each 에서 빠져나오는 방법
return false를 추가하면, 빠져나옴 function box() { context.lineWidth = 1 context.strokeStyle = 'rgba(255,0,0,1)'; $.each(boxes, function(i, box) { x = box[1] y = canvas.height-box[4] width = box[3] - x height = canvas.height-box[2] - y context.strokeRect(x,y,width,height) context.stroke() return false })
2021.01.24 -
HTML 태그 삭제
$('#tiff').remove(); $('canvas').remove('#tiff'); $('canvas#tiff').remove(); $('canvas').remove('.tiff'); $('canvas').remove();
2021.01.24 -
canvas getContext 인식
getContext를 인식하지 못함 var canvas = $('#tiff').getContext('2d') getContext를 인식함 var canvas = document.getElementById('tiff').getContext('2d')
2021.01.24 -
id가 없는 canvas 찾아서 id 셋팅하기
current stock price: $3.15 +0.15
2021.01.23 -
API 참조 방법
1. 로컬에 다운받아서 참조 2. 외부에 존재하는 url 참조
2021.01.23