Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Answered Animate background-color to x transparent with Variable

SpongeBOB

Well-Known Coder
Hi everyone,

I have an HTML element (fieldset) that I would look to animate the background-color transparency, from solid to 0.75 of transparency

If there will be a way just to change the alpha channel that would be great.. but here what I've done so far.

The background color of this fieldset come from an external .css with a variable name var(--exTheColor)

The declaration of that variable in the .css file
CSS:
--exTheColor:rgb(40,40,40);


in my html page I have tried


<style>
CSS:
@keyframes TransBG {
   form {background-color: rgba(var(--exTheColor), 1);}
   to {background-color: rgba(var(--exTheColor), 0.7);}
}
.TBG {
   animation-name: TransBG;
   animation-duration: 1s;
   animation-timing-function: ease-out;
   animation-delay: 1.5s; 
}
</style>

HTML:
<fieldset class="TBG" style="background-color: var(--exTheColor)"></fieldset>

--

The resulting animation go from full solid to full transparent :thinking: ! any idea ?
 
Solution
I've found ! I was needed to declare the variable not as a rgb but directly put the raw serie

CSS:
 --exTheColor:40,40,40;

Buy us a coffee!

Back
Top Bottom