Hi,
There is not a way to do this easily as such.
1) Please disable Theme Options => Performance Options.
2) Open the file /js/functions.js
and search for this line portfolioInstance.animate({opacity: 1}, 800);
, then reduce the number value to 0
.
3) Located this JS function:
animateItems: function(portfolioInstance) {
portfolioInstance.find('.portfolio-item').each(function(i) {
jQuery(this).delay(i*200).animate({
'opacity' : 1
}, 800, 'easeOutExpo', function() {
jQuery(this).addClass('item-animated');
});
});
},
Change it to:
animateItems: function(portfolioInstance) {
portfolioInstance.find('.portfolio-item').each(function(i) {
jQuery(this).delay(i*100).animate({
'opacity' : 1
}, 0, 'easeOutExpo', function() {
jQuery(this).addClass('item-animated');
});
});
},