guesthouse_lite-8.x-1.0/js/init/waypoints-animations-init.js
js/init/waypoints-animations-init.js
(function ($, Drupal, once) {
Drupal.behaviors.mtWaypointsAnimations = {
attach: function (context, settings) {
once('mtWaypointsAnimations', "body:not(.path-admin) [data-animate-effect]", context).forEach(function(item) {
var thisObject = $(item);
var animation = thisObject.attr("data-animate-effect");
if(animation != "no-animation") {
var waypoints = thisObject.waypoint(function(direction) {
var animatedObject = $(this.element);
setTimeout(function() {
animatedObject.addClass("animated " + animation);
animatedObject.removeClass("mt-no-opacity");
}, 100);
this.destroy();
},{
offset: "90%"
});
}
});
}
};
})(jQuery, Drupal, once);
