Dear Sylwester,
Thanks for using the Animate It! Apologies for the delayed reply.
Please follow below steps, and the FadeIn FadeOut sequence should work properly.
1. Paste the following CSS in:
Extensions > Plugins > System - Animate It! > Custom CSS
.fade-wrapper{
position: relative;
}
.fade-wrapper p{
margin: 0;
}
.fade-wrapper .animated{
position: absolute;
width: 100%;
top: 0;
left: 0;
font-size:300%;
color: #ffffff;
text-decoration: none;
text-shadow:0 0 6px black;
font-weight:normal;
font-style: normal;
line-height: 1.2em;
}
2. Paste the following to your article/module.
Please remember to paste the Source Code mode.
(See Image here)
<div class="fade-wrapper" style="text-align: center;">
<p>{edsnewanimate|class="eds-animate edsanimate-sis-hidden "|data-eds-entry-animation="fadeIn"|data-eds-entry-delay="2"|data-eds-entry-duration="1"|data-eds-entry-timing="linear"|data-eds-exit-animation="fadeOut"|data-eds-exit-delay="2"|data-eds-exit-duration="1"|data-eds-exit-timing="linear"|data-eds-repeat-count="infinite"|data-eds-keep="yes"|data-eds-animate-on="load"|data-eds-scroll-offset=""}</p>
This is Sentence 1<br />
<p>{/edsnewanimate}</p>
<p>{edsnewanimate|class="eds-animate edsanimate-sis-hidden "|data-eds-entry-animation="fadeOut"|data-eds-entry-delay="2"|data-eds-entry-duration="1"|data-eds-entry-timing="linear"|data-eds-exit-animation="fadeIn"|data-eds-exit-delay="2"|data-eds-exit-duration="1"|data-eds-exit-timing="linear"|data-eds-repeat-count="infinite"|data-eds-keep="yes"|data-eds-animate-on="load"|data-eds-scroll-offset=""}</p>
<p style="text-align: center;">Second Sentence goes here.</p>
<p>{/edsnewanimate}</p>
</div>
3. Save.
This should add 2 repeating Fading animation to your article/module.
Please note that the extra style you have added to the DIV are added in Custom CSS as well.
You can see this code live in action here:
eleopardanimate.jdevcloud.com/
Please let me know if this works.