Transition Property CSS

PHOTO EMBED

Fri Jan 01 2021 08:41:33 GMT+0000 (Coordinated Universal Time)

Saved by @eneki #php

// Changes the transition of a selected CSS property. That is, it takes effect when the property changes.
// cssProperty lengthOfTransition typeOfTransition delay (optional)
// General note: Don't separate the classes when chaining
.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}

content_copyCOPY