burger-quizz/scripts/rightmenu_hilight.js
2018-06-07 10:57:43 +02:00

22 lines
No EOL
492 B
JavaScript

function rightmenu_fire()
{
rightmenu_hilight();
setTimeout(rightmenu_fade,500);
setTimeout(rightmenu_hilight,1000);
setTimeout(rightmenu_fade,1500);
}
function rightmenu_hilight()
{
var elmt = document.getElementById('menu_right');
elmt.setAttribute("style","border-color: #FFFFFF;box-shadow:0px 0px 40px #492A13;background-color:#492A13;");
}
function rightmenu_fade()
{
var elmt = document.getElementById('menu_right');
elmt.setAttribute("style","");
}