-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
28 lines (23 loc) · 1.21 KB
/
script.js
File metadata and controls
28 lines (23 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
console.log("Сайт загружен! Добро пожаловать!");
const toggleButton = document.getElementById('theme-toggle');
const body = document.body;
const icon = document.getElementById('theme-icon');
const yearElement = document.getElementById("year");
// Проверяем сохранённую тему из localStorage
let currentTheme = localStorage.getItem('theme') || 'light-theme';
body.classList.add(currentTheme);
if (yearElement) {
yearElement.textContent = new Date().getFullYear();
}
// Переключение тем
toggleButton.addEventListener('click', () => {
if (body.classList.contains('light-theme')) {
body.classList.replace('light-theme', 'dark-theme');
icon.setAttribute('d', 'M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z'); // Иконка луны
localStorage.setItem('theme', 'dark-theme');
} else {
body.classList.replace('dark-theme', 'light-theme');
icon.setAttribute('d', 'M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z'); // Иконка солнца
localStorage.setItem('theme', 'light-theme');
}
});