美文网首页每日一文
检测所有类型/一行css适配rem

检测所有类型/一行css适配rem

作者: 永恒即是最美 | 来源:发表于2020-12-17 19:28 被阅读0次

    检测所有类型:

    /**
     * 检测类型
     * @param {any} target 检测的目标
     * @returns {"string"|"number"|"array"|"object"|"function"|"null"|"undefined"} 只枚举一些常用的类型
     */  
    function checkType(target) {  
      /** @type {string} */  
      const value = Object.prototype.toString.call(target);  
      const result = value.match(/\[object (\S*)\]/)[1];  
      return result.toLocaleLowerCase();  
    }  
    
    

    一行css适配rem(以前还引入js去计算,也是醉了)

    
    html{ font-size: calc(100vw / 750); }
    
    

    相关文章

      网友评论

        本文标题:检测所有类型/一行css适配rem

        本文链接:https://www.haomeiwen.com/subject/ikttnktx.html