Difference between revisions of "Team:Valencia UPV/mainjava"
Line 1: | Line 1: | ||
$(document).ready(function (){ | $(document).ready(function (){ | ||
$(".right").hover(function(){ | $(".right").hover(function(){ | ||
− | $(".slider_text1"). | + | $(".slider_text1").fadeIn(); |
+ | },function(){ | ||
+ | $(".slider_text1").fadeOut(); | ||
}); | }); | ||
− | |||
}); | }); |
Revision as of 13:17, 14 September 2015
$(document).ready(function (){
$(".right").hover(function(){ $(".slider_text1").fadeIn(); },function(){ $(".slider_text1").fadeOut(); });
});