移动端自动生成 meta js

Posted 创业男生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端自动生成 meta js相关的知识,希望对你有一定的参考价值。

(function () {
    const ua = navigator.userAgent;
    const android = ua.match(/Android d.d/);
    // const ios = ua.match(/iPhone OS d.d.d/);
    const androidVersion = android && android[0].match(/d.d/) && parseFloat(android && android[0].match(/d.d/)[0]);
    const baseWidth = 375;
    let nowWidth = baseWidth;
    // window.screen.width > 600 ? window.screen.width / 3 : window.screen.width;
    let basicFontSize = 32;

    if (nowWidth < 375) {
        nowWidth = 375;
    }
    basicFontSize *= (nowWidth / baseWidth);

    function rootFontSize(size) {
        const css = `html,body{font-size:${size}px !important;}`;
        const head = document.head || document.getElementsByTagName(‘head‘)[0];
        const style = document.createElement(‘style‘);

        style.type = ‘text/css‘;
        if (style.styleSheet) {
            style.styleSheet.cssText = css;
        } else {
            style.appendChild(document.createTextNode(css));
        }

        head.appendChild(style);
        // document.write(‘<style>html,body{font-size:‘ + size + ‘px !important;}</style>‘)
    }

    function _scale(zoom) {
        const meta = document.createElement(‘meta‘);
        meta.name = ‘viewport‘;
        meta.content = `width=device-width, initial-scale=${zoom}, minimum-scale=${zoom}, maximum-scale=${zoom}, user-scalable=no`;
        document.getElementsByTagName(‘head‘)[0].appendChild(meta);
    }

    function isScale() {
        let result = true;
        if (/KTU84P/.test(ua)) {
            result = false;
        }
        if (android) {
            if (androidVersion <= 4.3) {
                result = false;
            } else if (androidVersion <= 4.4) {
                const type = [/A31/, /R8207/, /R8170/, /R8270/, /R7c/];
                for (let i = 0; i < type.length; i += 1) {
                    if (type[i].test(ua)) {
                        result = false;
                    }
                }
            }
        }
        return result;
    }


    if (!isScale()) {
        rootFontSize(16);
        _scale(1);
    } else {
        _scale(0.5);
        rootFontSize(basicFontSize);
    }
}());

 

以上是关于移动端自动生成 meta js的主要内容,如果未能解决你的问题,请参考以下文章

移动端适配难点

Meta 开移动端 AI 生成神器 PyTorch Live,打造人工智能驱动的移动体验

移动端自适应flexible.js的使用

移动端:项目实战

移动端网页使用flexible.js加入百度联盟广告样式不一致问题解决

移动端REM布局方案