resize();
$(window,document).resize(function(){
resize();
});
function resize(){
var widths = $(window).width()/$("body").width();
$("body").css({
transform:"scale("+widths+")",
transformOrigin:"left top",
backgroundSize:"100% 100%"
});
}
resize();
$(window,document).resize(function(){
resize();
});
function resize(){
var widths = $(window).width()/$("body").width();
$("body").css({
transform:"scale("+widths+")",
transformOrigin:"left top",
backgroundSize:"100% 100%"
});
}