Skip to content

Instantly share code, notes, and snippets.

@hellomoto177
Created November 18, 2016 09:35
Show Gist options
  • Save hellomoto177/23d8ed3f11883e769a085317563fefc6 to your computer and use it in GitHub Desktop.
Save hellomoto177/23d8ed3f11883e769a085317563fefc6 to your computer and use it in GitHub Desktop.
animateCss and waypoints
(function($) {
$.fn.animated = function(inEffect) {
$(this).each(function() {
var ths = $(this);
ths.css("opacity", "0").addClass("animated").waypoint(function(dir) {
if (dir === "down") {
ths.addClass(inEffect).css("opacity", "1");
};
}, {
offset: "90%"
});
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment