web-dev-qa-db-ja.com

Sass Background Image mixin

私はSassには初めての人ですが、自分でワークフローを作成しようとしています。テーマデザイン用に「カラーパック」を生成し、ミックスインに次の変数を指定する必要があります。これを行うためのより良い方法はありますか?:

// folder,filename,extension,repeat,x-pos,y-pos
@mixin background ($folder:style1, $img:file, $type:png, $repeat:no-repeat, $x:0, $y:0) {
    background-image: url(./images/#{$folder}/#{$img}.#{$type});
    background-repeat: #{$repeat};
    background-position: #{$x}px #{$y}px;
}

私は次のように挿入しています:

#nav {
  @include background(style2,myimage,png,repeat-x,10,10);
}

これはこれをもたらします:

#nav {
  background-image: url(./images/style2/myimage.png);
  background-repeat: repeat-x;
  background-position: 10px 10px;
}

可能な場合はCSSの速記を使用したいのですが、出力にエラーが発生しました。これが最善の方法ではない場合、専門家のアドバイスをいただければ幸いです。

19
simplethemes

パックの構造/適用方法によっては、ループを使用して一連の汎用スタイルを生成できる場合があります。こちらのドキュメントを参照してください: http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#id35

画像のURLを取得するには、本当に3つの個別のコンポーネントが必要ですか?しません:$img/folder/img.extに設定すると、はるかに簡単ですか?

また、#{}は不要です。

これがあなたが望んでいることであることを願っています...実際に結果を必要とするものに関して、質問はあまり具体的ではありません。

乾杯、ジャニス

更新:

さて、質問を更新しました(ありがとう)。私はこれが一般的な使用のために少し良いかもしれないと信じています:

@mixin background($imgpath,$position:0 0,$repeat: no-repeat) {
    background: {
        image: url($imgpath);
        position: $position;
        repeat: $repeat;
    }
}
.testing {
    @include background('/my/img/path.png');
}

これにより出力されます:

.testing {
  background-image: url("/my/img/path.png");
  background-position: 0 0;
  background-repeat: no-repeat;
}

または、簡略版を使用できます。

@mixin backgroundShorthand($imgpath,$position:0 0,$repeat: no-repeat) {
    background: transparent url(#{$imgpath}) $repeat $position;
}
.testing2 {
    @include backgroundShorthand('/my/img/path.png');
}

生成されるもの:

.testing2 {
  background: transparent url(/my/img/path.png) no-repeat 0 0;
}

最後に、イメージディレクトリへのベースパスを個別に指定する場合、次の操作を実行できます。

$imagedir:'/static/images/'; // define the base path before the mixin

@mixin backgroundShorthandWithExternalVar($filename,$position:0 0,$repeat: no-repeat) {
    background: transparent url(#{$imagedir}#{$filename}) $repeat $position;
}
.testing3 {
    @include backgroundShorthandWithExternalVar('filename.png');
}

これにより、次が生成されます。

.testing3 {
  background: transparent url(/static/images/filename.png) no-repeat 0 0;
}

これは必要なものですか?

そうでない場合は、質問や返信/コメントを更新してください。

31
Jannis

他のサンプル:

画像へのパス:

$path--rel      : "../images";

$black: #000000;

mixinの作成:

@mixin background-image($img, $background-position, $background-color) {
    background-image: url('#{$path--rel}/#{$img}');
    background-repeat: no-repeat;
    background-position: $background-position;
    background-color: $background-color ;
} 

ミキシングを使用:

.navbar-inverse {
  @include background-image("header.png", right, $black); 
}

結果:

.navbar-inverse {
  background-image: url("../images/header.png");
  background-repeat: no-repeat;
  background-position: right;
  background-color: #000000;
}
4
raduken

1つの$ varを使用すると、簡単になります。

$list: pranav shah

=author-images
  @each $author in $list
.photo-#{$author}
  background: image-url("avatars/#{$author}.png") no-repeat

   .author-bio
+author-images

css

.author-bio .photo-adam {
 background: url('/images/avatars/adam.png') no-repeat;
 }
.author-bio .photo-john {
 background: url('/images/avatars/john.png') no-repeat;
 }
.author-bio .photo-wynn {
 background: url('/images/avatars/wynn.png') no-repeat;
 }
.author-bio .photo-mason {
 background: url('/images/avatars/mason.png') no-repeat;
 }
.author-bio .photo-kuroir {
background: url('/images/avatars/kuroir.png') no-repeat;
}
2
Pranav Shah