trwnh.com/hugo/assets/js/main.js

10 lines
328 B
JavaScript
Raw Normal View History

2022-07-11 22:50:12 +00:00
var root = document.documentElement;
let vh = window.innerHeight * 0.01;
root.style.setProperty('--vh', `${vh}px`);
// We listen to the resize event
window.addEventListener('resize', () => {
// We execute the same script as before
let vh = window.innerHeight * 0.01;
root.style.setProperty('--vh', `${vh}px`);
});