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

 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
   $(".slider_text_p1").hide();
 
   $(".slider_text_p1").hide();
 
   $(".slider_text_p2").hide();
 
   $(".slider_text_p2").hide();
   $("#cover_l").hover(function(){
+
   $(".slider").hover(function(){
 
       $(".slider_text2").fadeIn(1500);
 
       $(".slider_text2").fadeIn(1500);
 
       $(".slider_text_p2").fadeIn(1500);
 
       $(".slider_text_p2").fadeIn(1500);
Line 11: Line 11:
 
       $(".slider_text_p2").fadeOut();
 
       $(".slider_text_p2").fadeOut();
 
   });
 
   });
   $("#cover_r").hover(function(){
+
   $(".right").hover(function(){
 
       $(".slider_text1").fadeIn(1500);
 
       $(".slider_text1").fadeIn(1500);
 
       $(".slider_text_p1").fadeIn(1500);
 
       $(".slider_text_p1").fadeIn(1500);

Latest revision as of 14:08, 18 September 2015

$(document).ready(function (){

  $(".slider_text2").hide();
  $(".slider_text1").hide();
  $(".slider_text_p1").hide();
  $(".slider_text_p2").hide();
  $(".slider").hover(function(){
     $(".slider_text2").fadeIn(1500);
     $(".slider_text_p2").fadeIn(1500);
  },function(){
     $(".slider_text2").fadeOut();
     $(".slider_text_p2").fadeOut();
  });
  $(".right").hover(function(){
     $(".slider_text1").fadeIn(1500);
     $(".slider_text_p1").fadeIn(1500);
  },function(){
     $(".slider_text1").fadeOut();
     $(".slider_text_p1").fadeOut();
  });

});