I’m writing a site using jQuery 3.3.1. All the animations that I include are running immediately.
For instance:
The element l_B move immediately, in just one step.
Going through the animate source (file effects,js), I found that the property “animation.startTime“ sometimes has a Date reference, and sometimes is a number.
When “animation.startTime“is a Date object, the variable “remaining“ is set with NaN instead of a real number:
I hack the source to correct this adding this line:
After that, the animations started to work.