CSS工具(Autoprefixer、CSScomb、CSS3 Pie、CSS3 Maker)

喜夏-厌秋 提交于 2020-03-02 05:22:56

#####Autoprefixer:一个以最好的方式处理浏览器前缀的后处理程序。 安装grunt-autoprefixer插件

npm install grunt-cli grunt-contrib-watch grunt-autoprefixer

Gruntfile.js

module.exports = function (grunt) {
     grunt .initConfig ({
          autoprefixer : {
               dist : {
                    files : { 'build/style.css' : 'style.css' } } },
                    watch : {
                         styles : {
                              files : ['style.css' ],
                              tasks : ['autoprefixer' ]
                         }
                    }
               });
 
grunt.loadNpmTasks('grunt-autoprefixer' );
grunt.loadNpmTasks('grunt-contrib-watch' );};

启用Grunt的Watch功能

./node_modules/.bin/grunt watch

#####CSScomb:CSS属性排序工具

#####CSS3 Pie:可以让IE6至IE8版本实现大多数的CSS3修饰特性,如圆角、阴影、渐变等。

#####CSS3 Click Chart: 非常好的CSS3效果演示,提供了实例代码。

#####CSS3 Please:非常帅的CSS3工具,可修改代码,即时预览

#####CSS3 Maker:可在线演示渐变、阴影、旋转、动画等非常多的效果,并生成对应效果的代码

#####CSS3 browsersupport:不同浏览器下CSS属性兼容性查看。

相关链接:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!