substyle icon indicating copy to clipboard operation
substyle copied to clipboard

Trying to animate a simple loader component

Open Mayank-savaliya opened this issue 3 years ago • 0 comments

let defaultStyle = {
suggestions: { marginTop: "10px", loadingIndicator: { spinner:{
element: { height: 100, width: 100, background: "black", animationName: "$element", animationCount: "infinite", animationDuration: "2s", "@keyframes element":{ "0%":{ opacity: 0 }, "100%":{ opacity: 1 } } }, element1: { }, element2: {

        },
        element3: {
        },
        element4: {},
        element5: {}
    }
}

}, }

Trying to make a loader component with animation. Not sure how to get it done

Mayank-savaliya avatar Feb 18 '22 09:02 Mayank-savaliya