1

请帮助...我正在创建一个Web应用程序,当浏览器的缩放级别小于1时,我需要将其设置为默认值...我尝试过对我没有帮助的jquery resize()函数,因为我没有得到如何以像素为单位获取窗口宽度的任何帮助将被应用...thanx...

var winWidth = $(window).width();
$(window).resize(function() { 
    if (winWidth>"1500")
    {
        //how can i pass the values again to the window width so dat it will reset to default
    }
});
4

1 回答 1

1

适用于镀铬及以上;

transform: scale(2); 
    -webkit-transform: scale(2); 
    -webkit-transform-origin: 0 0; 
    -moz-transform: scale(2); 
    -moz-transform-origin: 0 0; 
    -o-transform: scale(2); 
    -o-transform-origin: 0 0; 
    -ms-transform: scale(2); 
    -ms-transform-origin: 0 0;

IE 7 和 8

zoom: 2;

例子在这里

于 2013-10-18T21:21:11.600 回答