0
How can I make css onclick animations? (Answered)
I want to make an exit icon disappear after clicking it
4 Réponses
+ 2
if(you mean to make something invisible by clicking on it){
<div onclick="this.style.opacity='0'"></div>
}
+ 2
If you know JS or jquery you can do something like this.
https://codepen.io/thetallweeks/pen/naNPWm
+ 2
Pythoner can you give us more details as to what you really want. An exit icon disappearing could be a simple fade out with css animation or a quick disappearance using JavaScript
+ 1
Thank you all for your answers!