I'm attempting to add/remove a .hide class:
.hide {
margin: 0;
padding: 0;
width: 0;
height: 0;
opacity: 0;
}
Which essentially allows other elements to pass over the corresponding element in its atLeave state, of course given that element has this class. Then, on this element's atEnter stage, I must promptly remove this class.
Is there any known way of doing this?
I'm attempting to add/remove a
.hideclass:Which essentially allows other elements to pass over the corresponding element in its
atLeavestate, of course given that element has this class. Then, on this element'satEnterstage, I must promptly remove this class.Is there any known way of doing this?