You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
18 lines
553 B
18 lines
553 B
import './bootstrap'; |
|
|
|
window.addEventListener("scroll", () => { |
|
document.body.style.setProperty( |
|
"--scroll", |
|
window.pageYOffset / (document.body.offsetHeight - window.innerHeight) |
|
); |
|
}); |
|
|
|
function themeToggle() { |
|
document.querySelector("html").classList.toggle("dark"); |
|
document.querySelectorAll(".btn-theme").forEach(btn => btn.querySelector("img").setAttribute("src", |
|
document.querySelector("html").classList.contains("dark") ? |
|
"/img/dark.svg" : "/img/light-2.svg" |
|
)); |
|
} |
|
|
|
window.themeToggle = themeToggle; |