Difference between revisions of "Team:Valencia UPV/mainjava"

Line 1: Line 1:
 
$(document).ready(function (){
 
$(document).ready(function (){
   $(".slider_text1").hide();
+
   $(".slider_text2").hide();
   $(".right").hover(function(){
+
   $(".slider").hover(function(){
       $(".slider_text1").fadeIn();
+
       $(".slider_text2").fadeIn();
 
   },function(){
 
   },function(){
       $(".slider_text1").fadeOut();
+
       $(".slider_text2").fadeOut();
 
   });
 
   });
 
});
 
});

Revision as of 13:21, 14 September 2015

$(document).ready(function (){

  $(".slider_text2").hide();
  $(".slider").hover(function(){
     $(".slider_text2").fadeIn();
  },function(){
     $(".slider_text2").fadeOut();
  });

});