Dear All,
this site bottom picture using mouseover effect. How can we do something like this.
Regards
Manoj
You can see something very similar on my site - www.forwardfocus.in under Latest Works section.
Here's the function I used to create this effect:
var lis = $("#latest_work li");
$("#latest_work li").hover(
function () {
$(this).find('.description-overlay').animate({top:'20px'}, 300, 'easeOutExpo');
},
function () {
$(this).find('.description-overlay').animate({top:'140px'}, 200, 'easeOutExpo');
}
);
// portfolio item animation
var portfolio_items = $("#portfolio_items .tab_content li");
var portfolio_items_height = $("#portfolio_items .tab_content li").css('height');
portfolio_items.each(function(el){
$(this).find('.description-overlay').css({'height':portfolio_items_he ight,'top':portfolio_items_height});
})
portfolio_items.hover(
function () {
$(this).find('.description-overlay').animate({top:0}, 300, 'easeOutExpo');
},
function () {
$(this).find('.description-overlay').animate({top: portfolio_items_height}, 200, 'easeOutExpo');
}
);
ST thanaks for your replay i have already something like http://www.incg.nl/blog/2008/hover%2Dblock%2Djquery/example/animate_ho ver.html.
But my link its a some different its goes up to the entire unit. If any possibility to do your coding for something like this
I've made a sample for you here: http://sudarshan.me/adobeforum/samples/divslider/
See this link: http://sudarshan.me/adobeforum/samples/divslideup/
Sudarshan Thiagarajan wrote:
See this link: http://sudarshan.me/adobeforum/samples/divslideup/
That's neat Sud.....I'll steal that as a snippet for future use.
North America
Europe, Middle East and Africa
Asia Pacific