作为一个JS初学者,我正在练习一个非常简单的操作:深色和浅色主题之间的切换。
一切都很好,但我想在班级之间顺利过渡,但我不知道该怎么做。
准确地说,我想要颜色之间的平滑过渡。
请帮忙=)
这是我的js代码:
let themer = document.querySelector('.page');
let themeButton = document.querySelector('.theme-button');
themeButton.onclick = function () {
themer.classList.toggle('light-theme');
themer.classList.toggle('dark-theme');
};
青春有我
相关分类