Advertisement
deliciousthemes

Remove Animation on Projects when filter is clicked

Jul 25th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(window).load(function() {
  2.     var itemReveal = Isotope.Item.prototype.reveal;
  3.     Isotope.Item.prototype.reveal = function() {
  4.       itemReveal.apply( this, arguments );
  5.       jQuery( this.element ).css({'visibility': 'visible', 'animation': 'fadeInUp'});
  6.     };    
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement