页面缩放功能

 <script type="text/javascript">
        var US = navigator.userAgent;
        var winit = function () {
            var w = document.documentElement.clientWidth;
            if (US.indexOf("MSIE") > 0) {
                document.body.style.zoom = w / 1920; document.getElementById("OnlineBookingMenu").style.zoom = w / 1920;
                document.getElementById("OnlineBookingBoxhead").style.zoom = w / 1920;
 
            }
            if (US.indexOf("Firefox") > 0 || (US.indexOf("NET4.0") > 0 && US.indexOf("MSIE") == -1) || (US.indexOf("Trident") > 0 && US.indexOf("Gecko") > 0)) {
                document.body.style.transform = "scale(" + (w / 1920) + ")"; document.body.style.transformOrigin = "top left";
            }
            if (US.indexOf("Chrome") > 0 || US.indexOf("Safari") > 0) {
                document.body.style.zoom = w / 1920;
            }
        };
        window.onresize = function () { winit(); };
        $(document).ready(function () { $.scrolltotop($)({ className: 'to_top', offsety: 90 }); winit(); });
    </script>
posted @ 2015-06-04 15:56  Pavilion  阅读(610)  评论(0编辑  收藏  举报