加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 综合聚焦 > 编程要点 > 语言 > 正文

CSS怎样做容易的主题切换的功能?

发布时间:2023-07-31 14:31:01 所属栏目:语言 来源:
导读: 今天给大家分享的是关于CSS怎样实现简单的主题切换的功能,主题切换是比较常见的需求,切换的效果也就是改变配色,那么这个效果要怎么样做呢?本文有实例和详细注释供大家参考,接下来跟随小编一起看看吧。

 今天给大家分享的是关于CSS怎样实现简单的主题切换的功能,主题切换是比较常见的需求,切换的效果也就是改变配色,那么这个效果要怎么样做呢?本文有实例和详细注释供大家参考,接下来跟随小编一起看看吧。
 
    HTML
 
    首先,我们需要包含“按钮”,这些按钮将触发主题根据选择的主题进行切换。(注:你总是可以使这些作为 options 一个 select 元素,如果你最好的方法)
 
<div class="color-select">
 
    <button onclick="toggleDefaultTheme()"></button>
 
    <button onclick="toggleSecondTheme()"></button>
 
    <button onclick="toggleThirdTheme()"></button>
 
</div>
 
    而已!现在不必太担心 onclick 参数,我们将在添加JavaScript时再回到这一点。剩下的唯一一项是向 html 元素添加默认主题类,如下所示:
 
<html class="theme-default">
 
    CSS
 
    接下来,我们需要为两个 color-select 按钮设置样式,并使用将更改整个网站的自定义配色方案。我们将从配色方案开始。
 
    为了使这些主题之间能够无缝切换,我们将更改的颜色集设置为CSS变量:
 
.theme-default {
 
   --accent-color: #72f1b8;
 
   --font-color: #34294f;
 
}
 
.theme-second {
 
    --accent-color: #FFBF00;
 
    --font-color: #59316B;
 
}
 
.theme-third {
 
    --accent-color: #d9455f;
 
    --font-color: #303960;
 
}
 
body {
 
    background-color: var(--accent-color);
 
    color: var(--font-color);
 
}
 
    最后,我们设置面向用户的色板的样式:
 
.color-select button {
 
    -moz-appearance: none;
 
    appearance: none;
 
    border: 2px solid;
 
    border-radius: 9999px;
 
    cursor: pointer;
 
    height: 20px;
 
    margin: 0 0.8rem 0.8rem 0;
 
    outline: 0;
 
    width: 20px;
 
}
 
/* Style each swatch to match the corresponding theme */
 
.color-select button:nth-child(1) { background: #72f1b8; border-color: #34294f; }
 
.color-select button:nth-child(2) { background: #FFBF00; border-color: #59316B; }
 
.color-select button:nth-child(3) { background: #d9455f; border-color: #303960; }
 
    JavaScript
 
    我们需要使每个色样按钮触发其相应的主题,并交换出 theme-default 我们最初附加到主 html 元素上的类。我们还需要存储用户选择的内容 localStorage ,因此在重新加载或导航到其他页面时,他们的选择仍然存在。
 
// Set a given theme/color-scheme
 
function setTheme(themeName) {
 
    localStorage.setItem('theme', themeName);
 
    document.documentElement.className = themeName;
 
}
 
// Toggle between color themes
 
function toggleDefaultTheme() {
 
    if (localStorage.getItem('theme') !== 'theme-default'){
 
        setTheme('theme-default');
 
    }
 
}
 
function toggleSecondTheme() {
 
    if (localStorage.getItem('theme') !== 'theme-second'){
 
        setTheme('theme-second');
 
    }
 
}
 
function toggleThirdTheme() {
 
    if (localStorage.getItem('theme') !== 'theme-third'){
 
        setTheme('theme-third');
 
    }
 
}
 
// Immediately set the theme on initial load
 
(function () {
 
    if (localStorage.getItem('theme') === 'theme-default') {
 
        setTheme('theme-default');
 
    }
 
    if (localStorage.getItem('theme') === 'theme-second') {
 
        setTheme('theme-second');
 
    }
 
    if (localStorage.getItem('theme') === 'theme-third') {
 
        setTheme('theme-third');
 
    }
 
})();
 
    就是这样!现在,这仅取决于您希望每种主题样式的自定义程度。可能性是无止境!
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章