var currentZooim = 100; // 현재비율 var maxZoom = 200; // 최대비율(500으로하면 5배 커진다) var minZoom = 80; // 최소비율 function zoomIn(){ if(currentZooim < maxZoom){ currentZooim += 10; //25%씩 커진다. $("#dispSize").html(currentZooim + "%"); document.body.style.zoom = currentZooim + "%"; }else{ return; } } function zoomOut(){ if(currentZooim > minZoom){ currentZooim -= 10; //25%씩 작아진다. $("#dispSize").html(currentZooim + "%"); document.body.style.zoom = currentZooim + "%"; }else{ return; } }
'퍼블리싱 > jQeury, Javascript' 카테고리의 다른 글
bxSlider Issue - content and next/prev arrows fade when slides fade (0) | 2018.01.17 |
---|---|
datepicker 위치 조정 (0) | 2017.06.13 |
막대그래프(unlimited value) (0) | 2017.01.19 |
빈칸넣기 문제(input setting), how to get byte (0) | 2016.12.20 |
탭메뉴, tabmenu, img src replace (0) | 2016.07.14 |