OJO, en la versión para smarthpone, que es donde existe ese menú en la parte superior.
http://fustot.cat
Código Javascript:
Ver original
$(document).ready(function(){ $("a.productes").click(function(evento){ var data = $(this).attr('data-estado'); if(data == 1){ $("#main-productes").fadeIn('5000'); $("a.productes").css("background-color", "#EEEEEE"); $("a.productes").css("color", "#0060a6"); $(this).attr('data-estado',2); }else{ $("#main-productes").fadeOut('5000'); $("a.productes").css("background-color", "white"); $("a.productes").css("color", "#0060a6"); $(this).attr('data-estado',1); } }); $("li.mobile").click(function(evento){ var data = $(this).attr('data-estado'); if(data == 1){ $("div.mobile").fadeIn('5000'); $("li.mobile").css("background-color", "#acacac"); $(".container").css("margin", "44px 0 0 0"); $(".container").css("display", "block"); $("footer").css("display", "block"); $("li.language").css("background-color", "#eeeeee"); $("li.email").css("background-color", "#eeeeee"); $("li.list").css("background-color", "#eeeeee"); $("div.email").css("display", "none"); $("div.language").css("display", "none"); $("nav#main-productes").css("display", "none"); $(this).attr('data-estado',2); }else{ $("div.mobile").fadeOut('5000'); $("li.mobile").css("background-color", "#eeeeee"); $(".container").css("display", "block"); $(this).attr('data-estado',1); } }); $("li.email").click(function(evento){ var data = $(this).attr('data-estado'); if(data == 1){ $("div.email").fadeIn('5000'); $("li.email").css("background-color", "#acacac"); $(".container").css("margin", "44px 0 0 0"); $(".container").css("display", "block"); $("footer").css("display", "block"); $("li.language").css("background-color", "#eeeeee"); $("li.mobile").css("background-color", "#eeeeee"); $("li.list").css("background-color", "#eeeeee"); $("div.mobile").css("display", "none"); $("div.language").css("display", "none"); $("nav#main-productes").css("display", "none"); $(this).attr('data-estado',2); }else{ $("div.email").fadeOut('5000'); $("li.email").css("background-color", "#eeeeee"); $(this).attr('data-estado',1); } }); $("li.language").click(function(evento){ var data = $(this).attr('data-estado'); if(data == 1){ $("div.language").fadeIn('5000'); $("li.language").css("background-color", "#acacac"); $(".container").css("margin", "44px 0 0 0"); $(".container").css("display", "block"); $("footer").css("display", "block"); $("li.email").css("background-color", "#eeeeee"); $("li.mobile").css("background-color", "#eeeeee"); $("li.list").css("background-color", "#eeeeee"); $("div.email").css("display", "none"); $("div.mobile").css("display", "none"); $("nav#main-productes").css("display", "none"); $(this).attr('data-estado',2); }else{ $("div.language").fadeOut('5000'); $("li.language").css("background-color", "#eeeeee"); $(this).attr('data-estado',1); } }); $("li.list").click(function(evento){ var data = $(this).attr('data-estado'); if(data == 1){ $("nav#main-productes").fadeIn('5000'); $("li.list").css("background-color", "#acacac"); $("li.email").css("background-color", "#eeeeee"); $("li.mobile").css("background-color", "#eeeeee"); $("li.language").css("background-color", "#eeeeee"); $("div.email").css("display", "none"); $("div.mobile").css("display", "none"); $("div.language").css("display", "none"); $(".container").css("display", "none"); $("footer").css("display", "none"); $(this).attr('data-estado',2); }else{ $("nav#main-productes").fadeOut('5000'); $("li.list").css("background-color", "#eeeeee"); $(".container").css("display", "block"); $("footer").css("display", "block"); $(this).attr('data-estado',1); } }); $('a[href^="#"]').bind('click.smoothscroll',function (e) { e.preventDefault(); var target = this.hash; $target = $(target); $('html, body').stop().animate({ 'scrollTop': $target.offset().top }, 500, 'swing', function () { window.location.hash = target; }); }); });
Saludos, y gracias de antemano