勤奋增强ie8到ie9 polyfill程度 完全扬弃老旧浏览器ie8

不知道人人对ie8有什么意见

很多人在说ie8要兼容的来由的时刻老是用百度的观察指数 实在有一个题目 百度中ie8有很大一部分多是360这类的浏览器

ie8必需退出历史舞台 而且我们还要和设想做出表态 不能无限制搞出新设想

长久以来web 有 展现页面 也有企业运用页面 然则都有一个题目 被限制了加载资本总数
有的时刻我在想web开辟者真牛 用比他人少得资本完成比他人多的功用
不要说android swift难

你是说谁人不断拖控件 不断加第三方效劳 不必斟酌装置大小的开辟吗

这个模板随时会改

    <!-- 统共35k 供应了dom3 es5 大部分功用 -->
    <!--[if IE 8]>
    <script src="../../public/js/ie8-support/es5-shim.min.js"></script>
    <script src="../../public/js/ie8-support/es5-sham.min.js"></script>
    <script src="../../public/js/ie8-support/ie8.min.js"></script>
    <![endif]-->
    <!-- dom4级 功用 -->
    <script src="../../public/js/modren-browser/dom4.min.js"></script>

ie8 js增强的题目

es5

es5-shim
es5-sham

必需的

ie8 dom

谢谢 webreflection

ie8
dom4

dom4中classlist必需啊

ie8 document.querySelector

ie8 document.querySelector 没法运用css3 selector
为了供应css :last-of-type 支撑 实在css3大部分都能够改写要领支撑 不过没必要

我写了个polyfill 用来支撑 :last-of-type

我能够保证相对没测试过 现在只确保我用的几个花样能够 只是供应思绪

(function () {
    'use strict';
    var _querySelector = document.querySelector;

    try {
        // Can't be used with css3 selector in IE < 9
        _querySelector.call(document, "head *:last-child");
    } catch (e) { // Fails in IE < 9
        var preSelector = "";
        var afterSelector = "";
        document.querySelector = function(selector) {
            var par = ":last-of-type";
            if (selector.indexOf(par) > -1) {
                var selRex = new RegExp('([\\w\\s.#])+(?='+par+')', 'g');
                preSelector = selector.match(selRex);

                if (!preSelector) {
                    return null;
                }
                var allList = document.querySelectorAll(preSelector);
                if (!allList || allList.length < 1) {
                    return null;
                }
                var lastEle = allList.item(allList.length - 1);

                afterSelector = selector.replace(preSelector, "").replace(par, "").trim();
                if (afterSelector != "") {
                    return lastEle.querySelector(afterSelector);
                }
                return lastEle;
            }
            return _querySelector.call(document, selector);
        }
    }
}());

ie8 css增强题目

假如你有个css预处置惩罚器 完全能够在处置惩罚的时刻 把内容以json字符串的花样一致放到一个元素的font-family里吗

postcss 照样完成简单点 sass有点玩的花了 但是postcss没时间写详细完成

比方我喜好运用sass

我本身就用这类计划处理了vw vh的题目 而且险些不必什么守候 只会闪一下

$polyfill: () !global;

@mixin set-value($selector, $map: ()) {
    $polyfill: map-deep-set($polyfill, $selector, $map) !global;
    @each $key, $value in $map {
        #{$key}: #{$value}
    }
}

@mixin easy-set($map) {
    @include set-value("#{&}", $map);
}

$setUnit-debug: false !global;

@function setUnit($val, $parentWidth, $unit) {
    @if $setUnit-debug {
        @return $val + px;
    } @else {
        @return ($val / $parentWidth) * 100 + $unit;
    }
}

@function vw($unit) {
    @return setUnit($unit, $designWidth, vw);
}

@function vh($unit) {
    @return setUnit($unit, $designHeight, vh);
}

@mixin polyfill() {
    .item14 {
        .p {
            @include easy-set((
                    padding-left: vw(91),
                    padding-right: vw(91),
                    margin-bottom: vh(69)
            ));
        }
        .intro1 {
            @include easy-set((
                    margin-top: vh(201)
            ));
        }
        input {
            @include easy-set((
                    height: vw(80),
                    line-height: vw(80),
                    font-size: vw(33),
                    padding: vw(20),
                    border-radius: vw(20)
            ));
        }
        textarea {
            @include easy-set((
                    height: vw(220),
                    line-height: vw(60),
                    font-size: vw(33),
                    padding: vw(20),
                    border-radius: vw(20)
            ));
        }
        .btn {
            @include easy-set((
                    width: vw(306),
                    height: vw(83),
                    font-size: vw(40),
                    border-radius: vw(20),
                    margin-top: vh(136)
            ));
        }
    }
}

@include polyfill();

@include json-encode($polyfill);

也许思绪就是运用sass将须要变动的selector信息构成json字符串安排到head font-family里
如许能够随时坚持更新 加快速率 js读取相干json 再一个一个增加上去 不限制什么selector 现在我运用querySelectorAll 速率照样有点慢 不过只须要一闪一下就能够改变

        var content = window.getComputedStyle(
                document.querySelector('head')
        ).fontFamily.replace(/\\/g, "").replace(/'/g, '');

        var viewportwidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
        var viewportheight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);

        function rel(propval, unit) {
            return parseFloat(propval.replace(unit, ""));
        }

        function cal(propval) {
            if (typeof propval != "string") {
                return propval;
            }

            if (propval.indexOf('vw') > -1) {
                return viewportwidth * rel(propval, "vw") / 100 + "px";
            } else if (propval.indexOf('vh') > -1) {
                return viewportheight * rel(propval, "vh") / 100 + "px";
            } else {
                return propval;
            }
        }

        function setVwStyle(ele, cssprops) {
            for (var csspropkey in cssprops) {
                ele.style[csspropkey] = cal(cssprops[csspropkey]);
            }
        }

        var parseobj = ( new Function( 'return (' + content + ');' ) )();

        for (var key in parseobj) {
            var elements = Array.prototype.slice.call(document.querySelectorAll(key));
            if (elements) {
                for (var i = 0; i < elements.length; i++) {
                    console.dir(elements[i]);
                    setVwStyle(elements[i], parseobj[key]);
                }
            }
        }
    原文作者:andypinet
    原文地址: https://segmentfault.com/a/1190000004109064
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞