mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-04-20 21:28:00 +00:00
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
|
var sidemenu= document.getElementById("sidemenu");
|
||
|
|
||
|
function openmenu(){
|
||
|
sidemenu.style.right="0";
|
||
|
}
|
||
|
|
||
|
function closemenu(){
|
||
|
sidemenu.style.right="-200px";
|
||
|
}
|