mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
27 lines
933 B
JavaScript
27 lines
933 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
const rootEl = document.documentElement;
|
|
const navbarTopEl = document.getElementById('navbar');
|
|
const navbarBottomEl = document.getElementById('navbarBottom');
|
|
const fixBottomEl = document.getElementById('navbarFixBottom');
|
|
const fixBottomElIcon = fixBottomEl.querySelector('.fa');
|
|
let fixedBottom = false;
|
|
|
|
fixBottomEl.addEventListener('click', event => {
|
|
fixedBottom = !fixedBottom;
|
|
|
|
if (fixedBottom) {
|
|
fixBottomEl.className = 'button is-success';
|
|
fixBottomElIcon.className = 'far fa-check-square';
|
|
rootEl.classList.add('has-navbar-fixed-bottom');
|
|
navbarBottomEl.classList.remove('is-hidden');
|
|
} else {
|
|
fixBottomEl.className = 'button is-link';
|
|
fixBottomElIcon.className = 'far fa-square';
|
|
rootEl.classList.remove('has-navbar-fixed-bottom');
|
|
navbarBottomEl.classList.add('is-hidden');
|
|
}
|
|
});
|
|
|
|
});
|