かなり複雑なグラデーションを SASS の mixin に変換しようとすると、問題が発生します。ほとんどのグラデーションは問題なく、カラー ストップも正しいと思います。MIXIN でこれを実行できないのはポジショニングだと思います。 (左上、右下)。
私はこれを必要とする:
.progress.stripes.animate > .bar > span {
background-image: -webkit-gradient(
linear, left top, right bottom,
color-stop(.25, rgba(255, 255, 255, .2)),
color-stop(.25, transparent),
color-stop(.5, transparent),
color-stop(.5, rgba(255, 255, 255, .2)),
color-stop(.75, rgba(255, 255, 255, .2)),
color-stop(.75, transparent), to(transparent));
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}
この mixin を使用するには:
@mixin linear-gradient($gradientLine, $colorStops...) {
background-color: nth($colorStops,1);
background-image: -webkit-gradient(linear, $gradientLine, $colorStops);
background-image: -webkit-linear-gradient($gradientLine, $colorStops);
background-image: -moz-linear-gradient($gradientLine, $colorStops);
background-image: -o-linear-gradient($gradientLine, $colorStops);
background: -ms-linear-gradient($gradientLine, $colorStops);
@if length($colorStops) == 2 {
$colour1:nth($colorStops,1);
$colour2:nth($colorStops,2);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$colour1}', endColorstr='#{$colour2}',GradientType=0 );
}
@if length($gradientLine) == 2 {
background-image: linear-gradient(to #{inverse-side(nth($gradientLine, 1))} #{inverse-side(nth($gradientLine, 2))}, $colorStops);
} @else {
background-image: linear-gradient(to #{inverse-side($gradientLine)}, $colorStops);
}
}
これは私が試したものですが、うまくいきません...
$grad: rgba(255, 255, 255, .2);
.progress.stripes.animate > .bar > span {
@include linear-gradient((left top, right bottom),$grad 25%, $transparent 25%, $transparent 5%, $grad 5%, $grad 75%, $transparent 75%);
}