Aylong (обсуждение | вклад) Нет описания правки Метка: отменено |
Aylong (обсуждение | вклад) Нет описания правки Метка: отменено |
||
Строка 6: | Строка 6: | ||
dataType: 'html', | dataType: 'html', | ||
success: function(data) { | success: function(data) { | ||
$('body').html(data); | setTimeout(function() { | ||
$('body').html(data); | |||
}, 1000); | |||
} | } | ||
}); | }); | ||
Строка 12: | Строка 14: | ||
}); | }); | ||
}); | }); | ||
$(document).ready(function() { | $(document).ready(function() { |
Версия от 17:32, 4 мая 2024
$(document).ready(function() { $('a').click(function(event) { var href = $(this).attr('href'); $.ajax({ url: href, dataType: 'html', success: function(data) { setTimeout(function() { $('body').html(data); }, 1000); } }); event.preventDefault(); }); }); $(document).ready(function() { var button = document.createElement("button"); button.innerHTML = "Сменить тему"; button.className = "theme-button"; button.onclick = toggleTheme; var container = document.getElementById("p-personal"); if (container) { container.parentNode.insertBefore(button, container); } var isLightTheme = localStorage.getItem("isLightTheme"); if (isLightTheme === "true") { document.documentElement.classList.add('light'); } else { document.documentElement.classList.remove('light'); } }); function toggleTheme() { var isLightTheme = document.documentElement.classList.toggle('light'); localStorage.setItem("isLightTheme", isLightTheme); }