美文网首页
doiuse使用手册

doiuse使用手册

作者: 一点金光 | 来源:发表于2019-07-28 13:33 被阅读0次
---
title: doiuse使用手册
date: 2018-06-09 16:29:00
updated: 2018-06-10 12:00:00
categories:
- 网页开发
- 样式兼容
tags:
- nodejs
---

使用can i use数据校验样式的浏端兼容。解决了这个问题——想知道这些样式是否兼容期望的那些浏览器版本,node版本。

下载

# 本地下载
npm i doiuse

# 全局下载
npm i doiuse -g

使用

本地下载-于命令行

全局下载-于命令行

#2 方式01
doiuse --browsers "ie >= 9, > 1%, last 2 versions" main.css
#2 方式02
cat main.css | doiuse --browsers "ie >= 9, > 1%, last 2 versions"

本地下载-脚本文件

var postcss = require('postcss');
var doiuse = require('doiuse');
 
postcss(doiuse({
  // 指定浏端列表
  browsers:['ie >= 6', '> 1%'],
  // 忽略某些特性
  ignore: ['rem'], // an optional array of features to ignore
  // 忽略某些文件
  ignoreFiles: ['**/normalize.css'], // an optional array of file globs to match against original source file path, to ignore
  onFeatureUsage: function(usageInfo) {
    console.log(usageInfo.message);
  }
})).process("a { background-size: cover; }")

配置文件

# 关闭所有特性
/* doiuse-disable */
# 开启所有特性
/* doiuse-enable */

# 关闭某些特性
/* doiuse-disable feature */

# 开启某些特性
/* doiuse-enable feature */

特性列表

参考文献

doiuse-offical-readme.md

相关文章

  • doiuse使用手册

    使用can i use数据校验样式的浏端兼容。解决了这个问题——想知道这些样式是否兼容期望的那些浏览器版本,nod...

  • 包的管理-软件列表

    gem使用手册npm使用手册yarn使用手册pip-使用手册maven-使用手册composer-使用手册 cho...

  • PostMan使用手册

    Postman 使用手册系列教程: Postman软件安装Postman使用手册1——导入导出和发送请求查看响应P...

  • YOU:身体使用手册Ⅱ 罗伊森

    YOU:身体使用手册Ⅱ 罗伊森.pdf: 内容简介······ “自己是自己最好的医生”是《YOU:身体使用手册(...

  • blender3.0使用手册及快捷键大全

    blender在线使用手册[http://dd.ma/6VKc0W6o] blender及网页使用手册下载地址 b...

  • conda

    conda 使用手册1conda 使用手册2conda 环境变量配置 删除虚拟环境:删除环境:使用命令conda ...

  • 《OKR使用手册》读书心得(一) 210115

    《OKR使用手册》读书心得之 OKR与KPl的关系 今天读了《OKR使用手册》,我原来对于OKR与KPI的关系似懂...

  • 小白分享~linux基础知识(一)

    引言 Linux 的开发者们写了丰富详尽的命令使用手册,英语是 manual,Linux 的使用手册可以说是 Li...

  • 2018-08-18

    #易挪宝后台管理使用手册 ##说明

  • Android混淆规则

    写给Android开发者的混淆使用手册

网友评论

      本文标题:doiuse使用手册

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