Fade in steps

29 views
Skip to first unread message

Gerald Fuchs

unread,
Sep 24, 2013, 3:47:47 PM9/24/13
to jmpr...@googlegroups.com
I have managed to fade out steps by  adding this to the css file:
.step:not(.active) {
    opacity: 0.0;
     -webkit-transition: opacity 1s;
    -moz-transition:    opacity 1s;
    -ms-transition:     opacity 1s;
    -o-transition:      opacity 1s;
    transition:         opacity 1s;
}

But I don't know, how to fade in steps. 

Any help is appreciated.
Gerald

Tobias Koppers

unread,
Sep 24, 2013, 4:19:12 PM9/24/13
to jmpress.js
.step {
    opacity: 1;
     -webkit-transition: opacity 1s;
    -moz-transition:    opacity 1s;
    -ms-transition:     opacity 1s;
    -o-transition:      opacity 1s;
    transition:         opacity 1s;
}
.step:not(.active) {
    opacity: 0.0;
}


2013/9/24 Gerald Fuchs <gf1...@gmail.com>

--
You received this message because you are subscribed to the Google Groups "jmpress.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jmpressjs+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply all
Reply to author
Forward
0 new messages