I'm trying to slide in a element smoothly using jquery.
but for some reason the element doesn't really slide in and the effect is not really smooth at all!
please view the jsfiddle here: http://jsfiddle.net/q7o0p488/1/
and this is my jquery code:
$(function() {
$('.mypro').hover(function() {
$(this).children('.overlay').fadeIn('slow');
$(this).children('.overlayBtns').slideToggle();
},
function(){
$('.overlay').fadeOut();
$('.overlayBtns').fadeOut('slow');
}
);
});
the effect that I am trying to create is basically to slide the red element from top smoothly.
any help would be appreciated.