문제


Im Using the zoom property in JQuery to zoom my body.
So far, this only works in Google Chrome, Not in IE. Using IE 11.
This is what i have so far:

$(document).ready(function(){   
        $('body').css("zoom", "70%");
});

Wich works perfectly in Chrome. For some reason i can't get this to work in IE.
Anyone who has a solution to this IE problem?

Thanks!

도움이 되었습니까?

해결책

Found it. for MS

$(document).ready(function(){   
        $('body').css("-ms-zoom", "70%");
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top