bulma/docs/_javascript/navbar.js

27 lines
923 B
JavaScript
Raw Normal View History

2017-10-24 11:23:31 +00:00
document.addEventListener('DOMContentLoaded', () => {
const rootEl = document.documentElement;
const navbarTopEl = document.getElementById('navbar');
const navbarBottomEl = document.getElementById('navbarBottom');
const fixBottomEl = document.getElementById('navbarFixBottom');
2018-03-26 13:46:39 +00:00
const fixBottomElText = document.getElementById('navbarFixBottomText');
2017-10-24 11:23:31 +00:00
let fixedBottom = false;
fixBottomEl.addEventListener('click', event => {
fixedBottom = !fixedBottom;
if (fixedBottom) {
fixBottomEl.className = 'button is-success';
2018-03-26 13:46:39 +00:00
fixBottomElText.innerHTML = 'Hide';
2017-10-24 11:23:31 +00:00
rootEl.classList.add('has-navbar-fixed-bottom');
navbarBottomEl.classList.remove('is-hidden');
} else {
fixBottomEl.className = 'button is-link';
2018-03-26 13:46:39 +00:00
fixBottomElText.innerHTML = 'Show';
2017-10-24 11:23:31 +00:00
rootEl.classList.remove('has-navbar-fixed-bottom');
navbarBottomEl.classList.add('is-hidden');
}
});
});