1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| var MENUHOZ = document.getElementById("menuhoz")
var IMG = document.getElementById("imgmenuhoz")
var INT = document.getElementById("menuhozint")
MENUHOZ.style.cssText = 'transition:all 1s;';
IMG.style.cssText = 'transition:opacity 1s;';
INT.style.cssText = 'transition:all .5s .5s;';
IMG.style.visibility = 'hidden';
INT.style.visibility = 'hidden';
MENUHOZ.addEventListener('click',function(e){
var relatedTarget = e.target;
if(relatedTarget.nodeName != 'IMG') //A remplacer par == DIV si vous compté mettre d'autre événement dans ce div
{
MENUHOZ.style.cssText = 'background-color:#ff9900;color:#ff9900;cursor:default';
MENUHOZ.style.width = '100%';
MENUHOZ.style.height = '150px';
IMG.style.height = '15px';
IMG.style.width = '15px';
IMG.style.visibility = 'visible';
IMG.style.opacity = '1';
INT.style.visibility = 'visible';
INT.style.opacity = '1';
}
});
IMG.addEventListener('click', function(){
MENUHOZ.style.cssText = 'background-color:#171717;;color:#ff9900';
MENUHOZ.style.width = '50px';
MENUHOZ.style.height = '50px';
IMG.style.cssText = 'transition:opacity 0s;';
IMG.style.height = '0px';
IMG.style.width = '0px';
IMG.style.visibility = 'hidden';
INT.style.cssText = 'transition:all 0s .1s;';
INT.style.visibility = 'hidden';
INT.style.opacity = '0';
}); |