I had the same problem and I just figured out how to do this, add the following lines above everything else in lavalamp.js
jQuery.extend( jQuery.easing,
{
bouncein: function(x, t, b, c, d) {
return c - jQuery.easing["bounceout"](x, d - t, 0, c, d) + b;
},
backout: function(x, t, b, c, d) {
var s = 1.70158;
return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
}
});
And remove the easing plugin. It worked for me.
source
share