I want to make animation to my button, which look like this ->
I want to change color of all arrows in sequence from left to right (delay in highlighting the arrows can be around 50ms) from white color to accent (border color).
<button className="submit-button" onClick={showButtonAnimation}>
<span className={'span-button'}>{'>'}</span>
<span className={'span-button'}>{'>'}</span>
<span className={'span-button'}>{'>'}</span>
<span className={'span-button'}>{'>'}</span>
<span className={'span-button'}>{'>'}</span>
</button>
This is my button element...
Do you have any ideas how showButtonAnimation
can look like?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…