I cant find transitions for button when hover there are only few transitions
Can I add new transitions or that’s only the transitions available
You can change transitions in both button conditions and style button section. If you need something more fancy you can use workflow animations, find new pluguins or play around with CSS syles using html element
Yeah if you’re looking for something fancy then would suggest adding it via CSS
How can make that
I can use css but how to add it to bubble and does that work too with js
check expose html id attributes in general settings
then add a ID attribute to your button e.g: “myBTN”
next add a html element somewhere in your page
then write your script there like:
<style>
#myBTN{
transition: width 2s, height 2s, transform 2s;
}
#myBTN:hover {
animation: mymove 5s infinite;
}
@keyframes mymove {
50% {transform: rotate(180deg);}
}
</style>
This topic was automatically closed after 70 days. New replies are no longer allowed.