I want to animate a colour change of a button in framer, so that when the mouse hovers over the button, the button changes colour. Is this possible, if so, how?
Thank you
I want to animate a colour change of a button in framer, so that when the mouse hovers over the button, the button changes colour. Is this possible, if so, how?
Thank you
Well, you can either do it through css, or you can do it with JavaScript, listening to the DOM events (by vanilla JavaScript or jQuery) and changing either the css or html content.
As for animation, you can use css for that as well.
Pick the one it seems better for your current way of doing things in your website.
Cheers.