Is it not allow to create a custom animation?

Author Posts

1101blueli

I have a a custom animation
.breakdance.scrolled–footer-shown .footer-cta-button {
animation: jump-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
Below code in Full Code Editor
@keyframes jump-in {
0% {
transform: translateY(-40px);
}

100% {
transform: translateY(0px);
}
}

But the editor would force the code to be changed
.breakdance.scrolled–footer-shown .footer-cta-button {
animation: cubic-bezier 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
https://ibb.co/JjpyTbb7
https://ibb.co/Y71b2q7y

If I move the animation code as 2nd group inside one selector
I will receive an error when saving
https://ibb.co/whHdXH0q

Is there a correct way to do it with MT?

Thank you


Sebastian

Hey Blue,

Thanks for reporting this, and sorry for the trouble.

It was due to a bug handling cubic-bezier animations, which I’ve fixed in Microthemer version 7.5.3.8.

You should be able to update via your dashboard shortly.

Cheers,
Sebastian

You must login or register to reply to this topic.