Difference between revisions of "Team:Valencia UPV/mainjava"
Line 2: | Line 2: | ||
$(".slider_text2").hide(); | $(".slider_text2").hide(); | ||
$(".slider").hover(function(){ | $(".slider").hover(function(){ | ||
− | $(".slider_text2").fadeIn( | + | $(".slider_text2").fadeIn(1000); |
},function(){ | },function(){ | ||
$(".slider_text2").fadeOut(); | $(".slider_text2").fadeOut(); | ||
}); | }); | ||
}); | }); |
Revision as of 13:46, 14 September 2015
$(document).ready(function (){
$(".slider_text2").hide(); $(".slider").hover(function(){ $(".slider_text2").fadeIn(1000); },function(){ $(".slider_text2").fadeOut(); });
});