Posts by Gabriel • 1 point
1 post
-
0
votes2
answers85
viewsA: Replace a div when arriving at a given input
Using jQuery you can use addClass() and removeClass() with CSS for animation. CSS: .flip-rotate { transform: rotateY(180deg); } .flip-container { transition: 1s; } jQuery:…