I have this animation that I applied to a table. I would like for it to take place each time I click on a link that will change the contents of the table but not instantly when I am loading the page.
.scale-up {
animation: scale-up 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes scale-up {
0% {
transform: scale(0.5);
}
100% {
transform: scale(1);
}
}