使用svgstore生成SVG Sprite

step1:新建一个文件夹svg

svg里新建src文件用来保存要合并的svg文件

step2 新建package.json

package.json :
{ "devDependencies": { "grunt": "^1.0.1", "grunt-svgstore": "^1.0.0" } }
npm install安装依赖包

step3 新建Gruntfile.js
module.exports = function(grunt) {
    // 配置
    grunt.initConfig({
        svgstore: {
            options: {
              prefix : 'icon-', 
              svg: { 
                viewBox : '0 0 200 200',
                xmlns: 'http://www.w3.org/2000/svg'
              },
              includedemo:true,
            },
            default : {
              files: {
                'demo/demo-svg.svg': ['src/*.svg'],
              },
            }

        }
    });
    // 载入grunt-svgstore
    grunt.loadNpmTasks('grunt-svgstore');
    // 注册任务
    grunt.registerTask('default', ['svgstore']);
};
step4 命令行输入grunt 和并svg文件

得到需要的合并后的文件
在这里插入图片描述

demo-svg-demo.html里演示了引用方法


  
    
  
  
    addgroup

        
          
        

  

你可能感兴趣的:(前端学习)