使用Gulp Spritesmith无法使用最终精灵进行更改

问题描述 投票:4回答:1

我正在使用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',

我错过了什么?

javascript gulp
1个回答
1
投票

使用spritesmithgulp.spritesmith从上到下逼近sprint图像的解决方案

精灵图像有4个图像块图像,如下图像等

enter image description here

示例代码:

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);
    }
  }
}

出来的形象

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.