better menu handling

This commit is contained in:
Yann Esposito (Yogsototh) 2010-06-11 11:23:12 +02:00
parent 69f5456dae
commit 8409246d5d
2 changed files with 6 additions and 9 deletions

View file

@ -126,6 +126,7 @@ ul.horizontal
position: relative
padding-bottom: 10px
width = !content_width
top: -1em
clear: both
!contentMargin = 0em

View file

@ -99,22 +99,18 @@ function entete_height() {
return $('#entete').height() - $('#menuMessage').height() + decalageTop;
}
function fastHideMenu() {
$('#content').css({top: - entete_height()});
$('#menuMessage').html('↓ Menu ↓')
$('#content').css({opacity: .2});
}
function hideMenu() {
$('#content').animate({top: - entete_height()}, 500 );
$('#menuMessage').html('↓ Menu ↓')
$('#content').animate({opacity: .2}, 3000 );
}
function showMenu() {
$('#content').animate({top:"-1em"}, 500 );
$('#menuMessage').html('↑ Menu ↑').click(hideMenu);
$('#content').animate({opacity:1}, 500 );
last+=1;
autoHideMenu(last);
}
function fastShowMenu() {
$('#content').css({top:"-1em"});
$('#menuMessage').html('↑ Menu ↑').click(hideMenu);
$('#content').css({opacity:1});
last+=1;
autoHideMenu(last);
}
@ -131,7 +127,7 @@ function autoHideMenu(value) {
if ( last == value ) {
hideMenu();
}
},5000);
},2000);
}
function initMenu() {
$('#titre').css({top: -entete_height});