文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么简单实现CSS主题的切换

2023-06-08 03:46

关注

这篇文章给大家分享的是有关怎么简单实现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;}.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-schemefunction setTheme(themeName) {    localStorage.setItem('theme', themeName);    document.documentElement.className = themeName;}// Toggle between color themesfunction 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');    }})();

感谢各位的阅读!关于“怎么简单实现CSS主题的切换”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯