当前位置:网站首页>Web page, adaptive, proportional scaling

Web page, adaptive, proportional scaling

2022-04-23 14:16:00 Ruirui junior

You can write a predetermined width and height first , Then scale it proportionally ,

// Adaptive scaling
            getc() {
                // let width = document.documentElement.clientWidth;
                //    let height = document.documentElement.clientHeight;
                window.addEventListener('load', adaptation);
                window.addEventListener('resize', adaptation);

                function adaptation() {
                    var w = document.body.clientWidth;
                    var h = document.body.clientHeight;

                    var nw = 2048;
                    var nh = 1536;
                    var left, top, scale, scale1;
                    scale = w / nw
                    scale1 = h / nh
                    if (scale1 < scale) {
                        document.getElementById('main').setAttribute('style', 'transf

版权声明
本文为[Ruirui junior]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231408339342.html