LoginSignup
3
2

More than 5 years have passed since last update.

gulp.spritesmithで出力画像の順番がめちゃくちゃになってハマった

Posted at

このオプションを付けることで直りました。

config.js
algorithmOpts: {sort: false}

最終的なspriteのコンフィグは下記の通り

config.js
  sprite: {
    src: src + '/**/sprite/*.png',
    dest: dest + '/image/',
    options: {
      imgPath: '/image/sprite.png',
      imgName: 'sprite.png',
      cssFormat: 'stylus',
      cssName: '_sprite.styl',
      algorithm: 'top-down',
      algorithmOpts: {sort: false}
    }
  }
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2