<div class="slider"></div>

<!-- dribbble - twitter -->
<a class="dribbble" href="https://dribbble.com/ai" target="_blank"><img src="https://cdn.dribbble.com/assets/dribbble-ball-mark-2bd45f09c2fb58dbbfb44766d5d1d07c5a12972d602ef8b32204d28fa3dda554.svg" alt=""></a>
<a class="twitter" target="_blank" href="https://twitter.com/aaroniker_me"><svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72"><path d="M67.812 16.141a26.246 26.246 0 0 1-7.519 2.06 13.134 13.134 0 0 0 5.756-7.244 26.127 26.127 0 0 1-8.313 3.176A13.075 13.075 0 0 0 48.182 10c-7.229 0-13.092 5.861-13.092 13.093 0 1.026.118 2.021.338 2.981-10.885-.548-20.528-5.757-26.987-13.679a13.048 13.048 0 0 0-1.771 6.581c0 4.542 2.312 8.551 5.824 10.898a13.048 13.048 0 0 1-5.93-1.638c-.002.055-.002.11-.002.162 0 6.345 4.513 11.638 10.504 12.84a13.177 13.177 0 0 1-3.449.457c-.846 0-1.667-.078-2.465-.231 1.667 5.2 6.499 8.986 12.23 9.09a26.276 26.276 0 0 1-16.26 5.606A26.21 26.21 0 0 1 4 55.976a37.036 37.036 0 0 0 20.067 5.882c24.083 0 37.251-19.949 37.251-37.249 0-.566-.014-1.134-.039-1.694a26.597 26.597 0 0 0 6.533-6.774z"></path></svg></a>
.slider {
    --handle: #362A89;
    --line: #D1D6EE;
    --line-active: #362A89;
    --value-color: #362A89;
    touch-action: none;
    user-select: none;
    width: 320px;
    height: 2px;
    border-radius: 1px;
    position: relative;
    svg {
        display: block;
        height: 83px;
        path {
            fill: none;
            stroke: var(--stroke, var(--line));
            stroke-width: 2;
        }
    }
    .active,
    & > svg {
        position: absolute;
        left: 0;
        top: -41px;
        height: 83px;
    }
    & > svg {
        width: 100%;
    }
    .active {
        position: absolute;
        overflow: hidden;
        width: calc(var(--active-width) * 1px);
        svg {
            --stroke: var(--line-active);
            width: var(--slider-width);
        }
    }
    .noUi-handle {
        --y: 0;
        cursor: grab;
        .point {
            position: relative;
            transform: translateY(calc(var(--y) * 1px));
            &:before {
                content: '';
                display: block;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background: var(--handle);
                transform: scale(var(--handle-scale, .75)) translateZ(0);
                transition: transform .25s ease;
            }
            .value {
                position: absolute;
                left: 50%;
                bottom: 100%;
                font-size: 12px;
                font-weight: 500;
                color: var(--value-color);
                pointer-events: none;
                opacity: var(--value-o, 0);
                transform: translate(-50%, var(--value-y, 0)) scale(var(--value-scale, .5)) translateZ(0);
                transition: transform .25s ease, opacity .25s linear;
            }
        }
        &.noUi-active {
            --handle-scale: 1;
            --value-o: 1;
            --value-y: -8px;
            --value-scale: 1;
        }
    }
    // Structure
    * {
        touch-action: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    &.noUi-state-tap .noUi-connect,
    &.noUi-state-tap .noUi-origin {
        transition: transform .25s;
    }
    .noUi-target {
        position: relative;
    }
    .noUi-base,
    .noUi-connects {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
    }
    .noUi-origin,
    .noUi-connect {
        position: absolute;
        will-change: transform;
        transform-origin: 0 0;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .noUi-connects {
        overflow: hidden;
        z-index: 0;
        border-radius: 1px;
        .noUi-connect {
            width: 100%;
            height: 100%;
        }
    }
    .noUi-handle {
        backface-visibility: hidden;
        position: absolute;
        outline: none;
        cursor: pointer;
        width: 32px;
        height: 32px;
        left: 16px;
        top: -15px;
    }
    .noUi-origin {
        left: auto;
        right: 0;
        height: 0;
        width: 10%;
    }
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
    &:before,
    &:after {
        box-sizing: inherit;
    }
}

// Center & dribbble
body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: 'Inter', Arial;
    background: #F6F8FF;
    .dribbble {
        position: fixed;
        display: block;
        right: 20px;
        bottom: 20px;
        img {
            display: block;
            height: 28px;
        }
    }
    .twitter {
        position: fixed;
        display: block;
        right: 64px;
        bottom: 14px;
        svg {
            width: 32px;
            height: 32px;
            fill: #1da1f2;
        }
    }
}
View Compiled
document.querySelectorAll('.slider').forEach(elem => {

    let handle,
        width = elem.offsetWidth,
        slider = noUiSlider.create(elem, {
        start: 60,
        connect: 'lower',
        range: {
            min: 0,
            max: 100
        }
    });

    let point = document.createElement('div');
    point.classList.add('point');

    let svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
    svg.setAttribute('viewBox', '0 0 ' + width + ' 83');
    elem.appendChild(svg);

    let active = document.createElement('div');
    active.classList.add('active');
    active.appendChild(svg.cloneNode(true));

    elem.appendChild(active);

    let value = document.createElement('div');
    value.classList.add('value');

    point.appendChild(value);

    elem.querySelector('.noUi-handle').appendChild(point);

    let svgPath = new Proxy({
        x: null,
        y: null,
        b: null,
        a: null
    }, {
        set(target, key, value) {
            target[key] = value;
            if(target.x !== null && target.y !== null && target.b !== null && target.a !== null) {
                elem.querySelectorAll('svg').forEach(svg => {
                    svg.innerHTML = getPath([target.x, target.y], target.b, target.a, width)
                });
            }
            return true;
        },
        get(target, key) {
            return target[key];
        }
    });

    setCSSVars(elem);

    slider.on('start', e => {
        handle = elem.querySelector('.noUi-handle');
        elem.querySelector('.noUi-handle').querySelector('.value').textContent = Math.round(e);
    });

    slider.on('update', e => {
        setCSSVars(elem);
        elem.querySelector('.noUi-handle').querySelector('.value').textContent = Math.round(e);
    });

    slider.on('slide', e => {
        setCSSVars(elem);
        elem.querySelector('.noUi-handle').querySelector('.value').textContent = Math.round(e);
    });

    slider.on('end', e => {
        gsap.to(handle, {
            '--y': 0,
            duration: .6,
            ease: 'elastic.out(1.08, .44)'
        });
        gsap.to(svgPath, {
            y: 42,
            duration: .6,
            ease: 'elastic.out(1.08, .44)'
        });
        handle = null;
    });

    svgPath.x = width / 2;
    svgPath.y = 42;
    svgPath.b = 0;
    svgPath.a = width;
    
    let onMove = e => {
        if(handle) {

            let laziness = 4,
                max = 24,
                edge = 52,
                currentLeft = handle.getBoundingClientRect().left - elem.getBoundingClientRect().left,
                handleWidth = handle.offsetWidth,
                handleHalf = handleWidth / 2,
                y = e.clientY - handle.getBoundingClientRect().top - handle.offsetHeight / 2,
                moveY = (y - laziness >= 0) ? y - laziness : (y + laziness <= 0) ? y + laziness : 0,
                modify = 1;

            moveY = (moveY > max) ? max : (moveY < -max) ? -max : moveY;
            modify = ((currentLeft + handleHalf <= edge ? (currentLeft + handleHalf) / edge : 1) * (width - currentLeft - handleWidth <= edge ? (width - currentLeft - handleWidth) / edge : 1));
            modify = modify > 1 ? 1 : modify < 0 ? 0 : modify;

            svgPath.b = currentLeft / 2  * modify;
            svgPath.a = width;
            svgPath.x = currentLeft + handleHalf;
            svgPath.y = moveY * modify + 42;

            handle.style.setProperty('--y', moveY * modify)

        }
    };

    document.addEventListener('pointermove', onMove);

})

function getPoint(point, i, a, smoothing) {
    let cp = (current, previous, next, reverse) => {
            let p = previous || current,
                n = next || current,
                o = {
                    length: Math.sqrt(Math.pow(n[0] - p[0], 2) + Math.pow(n[1] - p[1], 2)),
                    angle: Math.atan2(n[1] - p[1], n[0] - p[0])
                },
                angle = o.angle + (reverse ? Math.PI : 0),
                length = o.length * smoothing;
            return [current[0] + Math.cos(angle) * length, current[1] + Math.sin(angle) * length];
        },
        cps = cp(a[i - 1], a[i - 2], point, false),
        cpe = cp(point, a[i - 1], a[i + 1], true);
    return `C ${cps[0]},${cps[1]} ${cpe[0]},${cpe[1]} ${point[0]},${point[1]}`;
}

function getPath(update, before, after, width) {
    let smoothing = .16,
        points = [
            [0, 42],
            [before <= 0 ? 0 : before, 42],
            update,
            [after >= width ? width : after, 42],
            [width, 42]
        ],
        d = points.reduce((acc, point, i, a) => i === 0 ? `M ${point[0]},${point[1]}` : `${acc} ${getPoint(point, i, a, smoothing)}`, '');
    return `<path d="${d}" />`;
}

function setCSSVars(slider) {
    let handle = slider.querySelector('.noUi-handle');
    slider.style.setProperty('--slider-width', slider.offsetWidth + 'px');
    slider.style.setProperty('--active-width', handle.getBoundingClientRect().left - slider.getBoundingClientRect().left + handle.offsetWidth / 2);
}

External CSS

  1. https://fonts.googleapis.com/css?family=Inter:400,500,600,700&amp;display=swap

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.0.2/nouislider.min.js
  2. https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js