-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b870106
commit f2e13fa
Showing
5 changed files
with
556 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module.exports = { | ||
plugins: { | ||
// 用来给不同的浏览器自动添加相应前缀,如-webkit-,-moz-等等 | ||
autoprefixer: { | ||
overrideBrowserslist: [ | ||
'Android 4.1', | ||
'iOS 7.1', | ||
'Chrome > 31', | ||
'ff > 31', | ||
'ie >= 8' | ||
] | ||
}, | ||
'postcss-px-to-viewport': { | ||
unitToConvert: 'px', // 要转化的单位 | ||
viewportWidth: 375, // UI设计稿的宽度 | ||
unitPrecision: 6, // 转换后的精度,即小数点位数 | ||
propList: ['*'], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换 | ||
viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw | ||
fontViewportUnit: 'vw', // 指定字体需要转换成的视窗单位,默认vw | ||
selectorBlackList: ['wrap'], // 指定不转换为视窗单位的类名, | ||
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换 | ||
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false | ||
replace: true, // 是否转换后直接更换属性值 | ||
exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配 | ||
landscape: false // 是否处理横屏情况 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ | |
4. vconsole | ||
5. 过期缓存 | ||
6. 网络请求(axios) | ||
7. autoprefixer | ||
8. 移动端适配(vw) |
Oops, something went wrong.