DEV Community

Bruno Vieira
Bruno Vieira

Posted on • Edited on

15 3

Vanilla JS FadeIn/Out

It looks like JQuery is slowly starting to be "a thing of the past".. so i recently migrated my project from JQuery to Vanilla.. and the result is quite satisfying.

First, you can be sure that if you made it with JQuery, you will make it with Vanilla aswell, but keep in mind that may required a few more lines of code.

One of the things that i used to use alot with JQuery was FadeIn/FadeOut... now the question was: how to do it in Vanilla?

Well... quite easy actually.
Hope it helps someone.

        // ** FADE OUT FUNCTION **
        function fadeOut(el) {
            el.style.opacity = 1;
            (function fade() {
                if ((el.style.opacity -= .1) < 0) {
                    el.style.display = "none";
                } else {
                    requestAnimationFrame(fade);
                }
            })();
        };

        // ** FADE IN FUNCTION **
        function fadeIn(el, display) {
            el.style.opacity = 0;
            el.style.display = display || "block";
            (function fade() {
                var val = parseFloat(el.style.opacity);
                if (!((val += .1) > 1)) {
                    el.style.opacity = val;
                    requestAnimationFrame(fade);
                }
            })();
        };
Enter fullscreen mode Exit fullscreen mode

It works really well and it gives your project a little personality :P

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (3)

Collapse
 
realto619 profile image
Paul Leech

Without a time component, the effect is basically too brief to notice.
Check out this solution for the fade in effect: jsfiddle.net/TH2dn/606/

Collapse
 
eterychan profile image
Eternia

Rather than adding timer or interval, you can simply reduce the value 0.1 to 0.05 to make the animation slower. I have tested it myself.

Collapse
 
krasimir1 profile image
Krasimir1

Hello! This didnt work for me quite well.
When i changed this if (!((val += .1) > 1)) { to this if (!((val += .1) >= 1)) { it started working well.

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay