我正在使用Gulp Spritesmith生成一个巨大的长精灵,以产生滚动动画效果。
我正在关注this tutorial。在那个教程中有这个sass-function,它遍历图像:
@for $i from 1 through $frame-count {
.frame#{$i} {
background-position: -(($i * $offset-val) * 2) + px 50%;
}
}
我只会垂直地做同样的事情,所以:
@for $i from 1 through $frame-count {
.frame#{$i} {
background-position: 0px -(($i * $offset-val) * 2) + px;
}
}
但无论我做什么,那么我的输出精灵正在使用binary-tree
算法来制作精灵。
所以,如果我有16个图像,那么精灵看起来像这样:
1 2 7 13
3 4 8 14
5 6 9 15
10 11 12 16
我希望他们像:
1
2
3
4
5
6
7
...
...
这是我的核心Gulp Spritesmith文件:
var gulp = require('gulp');
var spritesmith = require('gulp.spritesmith');
gulp.task('default');
gulp.task('sprite', function () {
var spriteData = gulp.src('images/*.jpg')
.pipe(spritesmith({
imgName: 'sprite.jpg',
cssName: 'sprite.css',
algorithm: 'top-down'
}));
spriteData.img.pipe(gulp.dest('img'));
spriteData.css.pipe(gulp.dest('css'));
});
在过去的一小时里,我已经摆弄了这三条线:
.pipe(spritesmith({
imgName: 'sprite.jpg',
cssName: 'sprite.css',
}));
...而且无论我做什么, - 然后我都无法改变输出文件(根本没有!)。甚至没有名字,用cssName: 'sprite.css',
取代cssName: 'foobar.css',
!
我错过了什么?
使用spritesmith或gulp.spritesmith从上到下逼近sprint图像的解决方案
精灵图像有4个图像块图像,如下图像等
示例代码:
gulpfile.js
var gulp = require('gulp');
var spritesmith = require('gulp.spritesmith');
gulp.task('sprite', function () {
var spriteData = gulp.src('app/images/*.jpg').pipe(spritesmith({
imgName: 'doodle-sprite.jpg',
cssName: 'sprite.scss',
algorithmOpts: {
sort: false
},
algorithm: 'top-down',
}));
return spriteData.pipe(gulp.dest('app/images/'));
});
我对sprite.scss的结果
@mixin sprite-width($sprite) {
width: nth($sprite, 5);
}
@mixin sprite-height($sprite) {
height: nth($sprite, 6);
}
@mixin sprite-position($sprite) {
$sprite-offset-x: nth($sprite, 3);
$sprite-offset-y: nth($sprite, 4);
background-position: $sprite-offset-x $sprite-offset-y;
}
@mixin sprite-image($sprite) {
$sprite-image: nth($sprite, 9);
background-image: url(#{$sprite-image});
}
@mixin sprite($sprite) {
@include sprite-image($sprite);
@include sprite-position($sprite);
@include sprite-width($sprite);
@include sprite-height($sprite);
}
// The `sprites` mixin generates identical output to the CSS template
// but can be overridden inside of SCSS
//
// @include sprites($spritesheet-sprites);
@mixin sprites($sprites) {
@each $sprite in $sprites {
$sprite-name: nth($sprite, 10);
.#{$sprite-name} {
@include sprite($sprite);
}
}
}
出来的形象