Sass-conversion Hex en RGBa pour l'opacité de fond

j'ai le SASS mixin suivant, qui est une demi-modification complète d'un exemple RGBa :

css prettyprint-override">@mixin background-opacity($color, $opacity: .3) {
    background: rgb(200, 54, 54); /* The Fallback */
    background: rgba(200, 54, 54, $opacity);
} 

j'ai appliqué $opacity ok, mais maintenant je suis coincé avec le $color . Les couleurs que je vais envoyer dans le mixin seront HEX pas RGB.

mon exemple d'utilisation sera:

element {
    @include background-opacity(#333, .5);
}

Comment puis-je utiliser les valeurs HEX dans ce mixin?

153
demandé sur Volker E. 2012-06-07 13:49:44

4 réponses

la fonction rgba () peut accepter une seule couleur hexadécimale ainsi que des valeurs décimales de RGB. Par exemple, cela fonctionnerait très bien:

@mixin background-opacity($color, $opacity: 0.3) {
    background: $color; /* The Fallback */
    background: rgba($color, $opacity);
}

element {
     @include background-opacity(#333, 0.5);
}

si vous avez besoin de casser la couleur hex en composants RGB, cependant, vous pouvez utiliser les rouge () , Vert () , et bleu () fonctions pour le faire:

$red: red($color);
$green: green($color);
$blue: blue($color);

background: rgb($red, $green, $blue); /* same as using "background: $color" */
325
répondu hopper 2012-06-07 21:00:24

il y a un mixin intégré: transparentize($color, $amount);

background-color: transparentize(#F05353, .3);

le montant doit être entre 0 et 1;

Documentation Officielle Sass (Module: Sass:: Script::: Fonctions)

87
répondu user3631047 2015-09-09 13:52:32

SASS a une fonction intégrée rgba () pour évaluer les valeurs.

rgba($color, $alpha)

E. G.

rgba(#00aaff, 0.5) => rgba(0, 170, 255, 0.5)

un exemple utilisant vos propres variables:

$my-color: #00aaff;
$my-opacity: 0.5;

.my-element {
  color: rgba($my-color, $my-opacity);
}

sorties:

.my-element {
  color: rgba(0, 170, 255, 0.5);
}
20
répondu Reggie Pinkham 2018-05-24 00:16:18

vous pouvez essayer cette solution est la meilleure... 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);
6
répondu m.Elouafi 2012-06-07 10:06:16