KevSlashNull / TransitionMe

Built for a private project. Set css transition options via class tags.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TransitionMe

Built for a private project. Set css transition options via class tags.

Quick How To Use

The following html shows 3 classes from TransitionMe applied to the span element.

<span class="transitionme-opacity transitionme-ease-in-out transitionme-duration-0_5">Hello World!</span>

These classes are the same as the following style property.

span {
    transition: 0.5s ease-in-out opacity;
}

That's a transition which is 0.5s long, has the timing function ease-in-out and works on the opacity property.

About

Built for a private project. Set css transition options via class tags.

License:GNU Affero General Public License v3.0


Languages

Language:CSS 100.0%