Just starting to learn html and css and came across this awesome library:
Here's the code snippet I have so far:
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
You can see how it looks on my CodePen here: https://codepen.io/wmfznuiy-the-looper/pen/jOaMXXg
NUESTROS SERVICIOS
I'm trying to make the effect trigger on click. I tried using this code but didn't get the desired outcome:
$("#hola").click(function() {
$('.animate__animated .animate__bounce-active').toggleClass('.animate__animated .animate__bounce-active');
});
I've gone through multiple posts and guides but still couldn't figure it out. Any help would be greatly appreciated as I'm new to this. Thank you!