fredboniface.co.uk/js/navbar.js

19 lines
642 B
JavaScript
Raw Normal View History

2022-10-10 20:51:35 +01:00
function inflateSidebar() {
2022-10-10 21:04:21 +01:00
document.getElementById("sidebar").style.width = "150px";
2022-10-10 20:51:35 +01:00
}
function collapseSidebar() {
document.getElementById("sidebar").style.width = "0px";
2022-10-18 12:48:35 +01:00
}
2022-10-18 13:02:28 +01:00
function sidebarOpen() {
2022-10-18 13:12:02 +01:00
document.getElementById("sidebar").style.width = "50%";
2022-10-18 13:00:41 +01:00
document.getElementById("sidebar_open_short").style.display = "none";
document.getElementById("sidebar_close_short").style.display = "block";
}
2022-10-18 13:02:28 +01:00
function sidebarClose() {
2022-10-18 13:08:52 +01:00
document.getElementById("sidebar").style.width = "0%"
2022-10-18 13:00:41 +01:00
document.getElementById("sidebar_open_short").style.display = "block";
document.getElementById("sidebar_close_short").style.display = "none";
2022-10-07 20:14:11 +01:00
}