LottieInteractivity.create({
    mode: 'scroll',
    player: '#firstLottie',
    actions: [
        {
            visibility: [0, 1],
            type: 'seek',
            frames: [0, 100],
        },
    ],
});
LottieInteractivity.create({
    player: "#secondLottie",
    mode: "scroll",
    container: "#MyContainerId",
    actions: [
        {
            visibility: [0, 1.0],
            type: 'seek',
            frames: [90, 123],
        },
    ]
});
LottieInteractivity.create({
    player: '#thirdLottie',
    mode: 'scroll',
    actions: [
        {
            visibility: [0, 0.3],
            type: "stop",
            frames: [50]
        },
        {
            visibility: [0.3, 1.0],
            type: "seek",
            frames: [50, 240]
        }
    ]
});
LottieInteractivity.create({
    player: "#fourthLottie",
    mode: "scroll",
    actions: [
        {
            visibility: [0, 0.2],
            type: "stop",
            frames: [0]
        },
        {
            visibility: [0.2, 0.45],
            type: "seek",
            frames: [0, 45]
        },
        {
            visibility: [0.45, 1.0],
            type: "loop",
            frames: [45, 60]
        }
    ]
});