次のSassミックスインがあります。これは、RGBaの例の半分完全な変更です。
@mixin background-opacity($color, $opacity: .3) {
background: rgb(200, 54, 54); /* The Fallback */
background: rgba(200, 54, 54, $opacity);
}
$opacity
を適用しましたが、今は$color
の部分にこだわっています。ミックスインに送信する色は、RGBではなく16進数になります。
私の使用例は次のとおりです。
element {
@include background-opacity(#333, .5);
}
このミックスイン内でHEX値を使用するにはどうすればよいですか?
rgba()function は、10進数のRGB値と1つの16進数の色を受け入れることができます。たとえば、これはうまく機能します:
@mixin background-opacity($color, $opacity: 0.3) {
background: $color; /* The Fallback */
background: rgba($color, $opacity);
}
element {
@include background-opacity(#333, 0.5);
}
ただし、16進数の色をRGBコンポーネントに分割する必要がある場合は、 red() 、 を使用できますgreen() 、および blue() 関数:
$red: red($color);
$green: green($color);
$blue: blue($color);
background: rgb($red, $green, $blue); /* same as using "background: $color" */
組み込みのミックスインがあります:transparentize($color, $amount);
background-color: transparentize(#F05353, .3);
量は0〜1の間である必要があります。
SASSには、値を評価するための組み込みの rgba()関数 があります。
rgba($color, $alpha)
例えば。
rgba(#00aaff, 0.5) => rgba(0, 170, 255, 0.5)
独自の変数を使用した例:
$my-color: #00aaff;
$my-opacity: 0.5;
.my-element {
color: rgba($my-color, $my-opacity);
}
出力:
.my-element {
color: rgba(0, 170, 255, 0.5);
}
あなたはこの解決策を試すことができます、最高です... url( github )
// Transparent Background
// From: http://stackoverflow.com/questions/6902944/sass-mixin-for-background-transparency-back-to-ie8
// Extend this class to save bytes
.transparent-background {
background-color: transparent;
zoom: 1;
}
// The mixin
@mixin transparent($color, $alpha) {
$rgba: rgba($color, $alpha);
$ie-hex-str: ie-hex-str($rgba);
@extend .transparent-background;
background-color: $rgba;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#{$ie-hex-str},endColorstr=#{$ie-hex-str});
}
// Loop through opacities from 90 to 10 on an alpha scale
@mixin transparent-shades($name, $color) {
@each $alpha in 90, 80, 70, 60, 50, 40, 30, 20, 10 {
.#{$name}-#{$alpha} {
@include transparent($color, $alpha / 100);
}
}
}
// Generate semi-transparent backgrounds for the colors we want
@include transparent-shades('dark', #000000);
@include transparent-shades('light', #ffffff);