2016-08-10 3 views
0

, 예를 들어자바 스크립트 (jQuery를) 난 자바 스크립트 (jQuery를)로 확대해야

, Ctrl 키 + 스크롤 마우스로 확대합니다.

나는 파이어 폭스에서 작동하지 않습니다,
document.body.style.zoom 

을 시도했지만.

+1

코드를 게시하시기 바랍니다. – ThatAwesomeCoder

+2

가능한 [object.Style.Zoom 속성이 Firefox에서 작동하지 않습니다] (http://stackoverflow.com/questions/7175766/object-style-zoom-property-not-working-in-firefox) – Anticom

+1

http : // caniuse.com/#feat=css-zoom – gcampbell

답변

0

정확하게 달성하고 싶은 줌의 종류는 모르지만 변환을 사용해야합니다. scale (X);변환 원점 : 0 0; 비례 값 즉에최대 폭 세트 :

body { 
    max-width: 50%; 
    transform: scale(2); 
    transform-origin: 0 0; 
}