I tried editing the below code in post-tiles-frontend.js and it worked for me:
[ Moderator note: code fixed. Please wrap code in the backtick character (not the word) or use the code button. ]
// Animate Up
// Action when mouse enter of featured image
$('li.featured-image.up').mouseenter(function() {
$(this).children('a').animate({
top: '0%'
}, 500 );
});
Edit the %value of top to adjust how much top is left when mouseover.
Cheers!