mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2024-11-06 15:45:54 -05:00
27 lines
No EOL
975 B
JavaScript
27 lines
No EOL
975 B
JavaScript
console.log("hello");
|
|
|
|
window.addEventListener("scroll", () => {
|
|
document.body.style.setProperty("--scroll", window.pageYOffset / (document.body.offsetHeight - window.innerHeight));
|
|
}, false);
|
|
|
|
function changeTheme() {
|
|
let color = (Math.random() * 0xFFFFFF << 0).toString(16).padStart(6, "0");
|
|
setThemeColor(`#${color}`);
|
|
}
|
|
|
|
function changeThemeHex() {
|
|
let hex = prompt("Enter valid hexadecimal code :)");
|
|
if (hex) {
|
|
if (hex.charAt(0) != "#") hex = `#${hex}`;
|
|
if (/^#[0-9A-F]{3}$/i.test(hex) || /^#[0-9A-F]{6}$/i.test(hex) || /^#[0-9A-F]{8}$/i.test(hex)) {
|
|
setThemeColor(hex);
|
|
document.querySelector(".hex-code-label").textContent = "Hex code: " + hex;
|
|
} else alert("Invalid hex code!");
|
|
}
|
|
}
|
|
|
|
function setThemeColor(color) {
|
|
document.documentElement.style.setProperty("--theme-color", color);
|
|
let metaThemeColor = document.querySelector("meta[name=theme-color]");
|
|
metaThemeColor.setAttribute("content", color);
|
|
} |