I need help with a fading problem

Hello, I need help with an animation problem. I use 3 images that slowly merge into each other. All 3 images may be visible at the same time but never invisible at the same time. So I have tried to delay every single fading process. Despite this, very often none of the pictures can be seen. what am I doing wrong?

I have tried the following…

Image1: $#DWE#>1?(100*(sin(((#DWE#-(floor(#DWE#))) * 1.5 * pi)))):0$
Image2: $#DWE#>2?(100*(sin(((#DWE#-(floor(#DWE#))) * 1.5 * pi)))):0$
Image3: $#DWE#>3?(100*(sin(((#DWE#-(floor(#DWE#))) * 1.5 * pi)))):0$

Greets

Can you upload your design so we can check it .
I see you havent got covered the time from 0 until 1

A lot of times when im messing with animations I add an extra image at the back to avoid these bugs

You can try this:
$#DWE#(>0)&&(<2)?(100*(sin(((#DWE#-(floor(#DWE#))) * 1.5 * pi)))):0$

This should cover from 0 to 2

Thanks for your help, while I read your answer I realized what I did not notice. The images must smooth fade in and out I solved the problem.

As example: ((sin(#DWE#*13))*50+50)

Thanks again :slight_smile: