Difference between revisions of "Team:Valencia UPV/mainjava"
(Created page with "/*$(document).ready(function (){ →wiki bar hide&show: $('#top_menu_14').slideUp(); $("#header.alt h1").hover(function(){ $('#top_menu_14').slideDown();...") |
|||
(35 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | $(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(); | ||
+ | }); | ||
+ | }); |
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(); });
});