Learn how to enhance your OutSystems app with simple fade and slide animations. Follow our step-by-step guide to create a dynamic user interface.

Book a call with an Expert
Starting a new venture? Need to upgrade your website? RapidDev builds Webflow websites with your growth in mind.
Adding basic animations such as fading or sliding elements into view can enhance the user interface of your OutSystems applications. This step-by-step guide demonstrates how you can implement these animations to create a more dynamic and visually appealing experience.
/_ Fade In Animation _/
.fade-in {
opacity: 0;
transition: opacity 1s ease-in-out;
}
.fade-in.in-view {
opacity: 1;
}
/_ Slide In Animation _/
.slide-in {
transform: translateX(-100%);
transition: transform 1s ease-in-out;
}
.slide-in.in-view {
transform: translateX(0);
}
</pre>
When it comes to serving you, we sweat the little things. That’s why our work makes a big impact.