I want the text on my slider to smoothly fade in as it enters the view (my Elementor builder includes a carousel-type slider).
To achieve this effect, I included the following code snippet in the header section of my page:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
Then, I added specific classes to the div containing the text to indicate how I wanted it to fade in:
<div class="myDiv animated fadeInLeft" style="margin-bottom: 0; margin-top: 0;color: #FFF;font-size: 22px;line-height: 27.5px;">Hello World!</div>
Despite applying the classes "animated" and "fadeInLeft," the text remains static every time the slider transitions. Any suggestions on how to make the text actually fade in?