我有以下Sass mixin,这是一个RGBa示例的半完整修改:
@mixin background-opacity($color, $opacity: .3) {
background: rgb(200, 54, 54); /* The Fallback */
background: rgba(200, 54, 54, $opacity);
}
我已经应用了$不透明度,但现在我被$color部分卡住了。
我将发送到mixin的颜色将是HEX而不是RGB。
我的例子是:
element {
@include background-opacity(#333, .5);
}
我如何在这个mixin中使用HEX值?
如果你需要从变量和alpha透明度混合颜色,并与解决方案,包括rgba()函数,你会得到一个错误像
background-color: rgba(#{$color}, 0.3);
^
$color: #002366 is not a color.
╷
│ background-color: rgba(#{$color}, 0.3);
│ ^^^^^^^^^^^^^^^^^^^^
像这样的东西可能会有用。
$meeting-room-colors: (
Neumann: '#002366',
Turing: '#FF0000',
Lovelace: '#00BFFF',
Shared: '#00FF00',
Chilling: '#FF1493',
);
$color-alpha: EE;
@each $name, $color in $meeting-room-colors {
.#{$name} {
background-color: #{$color}#{$color-alpha};
}
}
SASS有一个内置的rgba()函数。
rgba($color, $alpha)
e.g.
rgba(#00aaff, 0.5) // Output: rgba(0, 170, 255, 0.5)
一个使用自己变量的例子:
$my-color: #00aaff;
$my-opacity: 0.5;
.my-element {
color: rgba($my-color, $my-opacity);
}
// Output: .my-element {color: rgba(0, 170, 255, 0.5);}
引用SASS文档:
transparenalize()函数的作用是将alpha通道减少a
固定用量,往往达不到预期的效果。
rgba()函数既可以接受十六进制颜色,也可以接受十进制RGB值。例如,这可以很好地工作:
@mixin background-opacity($color, $opacity: 0.3) {
background: $color; /* The Fallback */
background: rgba($color, $opacity);
}
element {
@include background-opacity(#333, 0.5);
}
如果你需要将十六进制颜色分解成RGB组件,你可以使用red(), green()和blue()函数来实现:
$red: red($color);
$green: green($color);
$blue: blue($color);
background: rgb($red, $green, $blue); /* same as using "background: $color" */
你可以试试这个解决方案,是最好的…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);