gulp-css-spritesmith icon indicating copy to clipboard operation
gulp-css-spritesmith copied to clipboard

A gulp plugin to help front engineer creating css sprite.

Results 7 gulp-css-spritesmith issues
Sort by recently updated
recently updated
newest added

[email protected]: pngjs2 has now taken over the original pngjs package on npm. Please change to use pngjs dependency, version 2+.

这边没有生成@2x图是什么原因呢 ![image](https://cloud.githubusercontent.com/assets/19201241/16449522/876b2394-3e2a-11e6-90a0-448b4a7e4f09.png) 只有style.png 没有 [email protected] 1倍图的时候没关系 ![image](https://cloud.githubusercontent.com/assets/19201241/16449549/b4b34d40-3e2a-11e6-897a-51a9b41bb1e8.png) 2倍图的时候找不到图片 导致页面显示空白 ![image](https://cloud.githubusercontent.com/assets/19201241/16449567/d6b666fc-3e2a-11e6-93cf-4b4bf03d1a82.png)

css写了图片路径的,为什么还要指定这个参数?

是否可以添加一个标识来按需合并图片,没有添加标识的不合并,例如以下: `background: url("css/index.png?__sprite");` 最后,感谢您的插件!

/\* 自动 sprite _/ gulp.task('sprite', function() { gulp.src('build/css/_.min.css') .pipe(cssSprite({ imagepath: './images/sprite', imagepath_map: null, spritedest: './images/sprite', spritepath: '../images/', padding: 0, useimageset: false, newsprite: false, spritestamp: true, cssstamp: true })) .pipe(gulp.dest('./')) .pipe(notify({message:...