I’ve installed the Elemium extension (wich makes the icons rotate), but i don’t know if Bubble already had it, someone please can solve my doubt?
you can make it spin at a fixed speed in bubble but that’s it, depends on your use case you can also consider to just copy paste an css loader form her
or here
You can apply custom CSS inside an HTML element in Bubble to rotate icons. Example:
<style>
.rotate-icon { animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
</style>
Then, apply the class rotate-icon
to your icon using ID Attribute settings in Bubble.
Or you can create a workflow that rotates an icon on condition using Bubble’s built-in Rotate action inside Element Actions.