Hi,
We’ll look into this issue. I seems the browser detection script we are using is not working as expected.
meanwhile you can try this workaround:
1. In the WordPress backend, go to Settings > Animate It! > Custom CSS
2. Paste the following and save:
@media only screen and (max-width: 767px) {
.animated {
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}
}
This would stop the animations on mobile.
Will get back to you as soon as the issue is fixed.