Styled markers

let SC = ScrollMoo({
    ".box": {
        markers: {
            backgroundColor: "yellowgreen",
            color: "black",
            fontSize: "16px"
        },
        indicatorStart: 50,
        indicatorEnd: 50,
        keyframes: {
            transform: {
                rotate: {
                    100: "360deg"
                }  
            }
        }
    }
});    
Copied!