在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前言暗黑模式这个概念最早起源于 随着苹果官方逐渐要求各大系统平台都得适配 认识笔者的朋友应该都知道笔者是一位重度CSS发烧友,当然这次也是使用纯CSS实现这个方案。是的,不加任何一段JS,侧面再次证明CSS的强大。 思路思路很简单,使用一个按钮来回切换主题样式。按钮未选中则切换到 :checked :选项选中的表单元素 + :元素相邻的同胞元素 使用 <body> <input class="ios-switch" type="checkbox"> <div class="main">网站主体</div> </body> 更多选择器的功能和分类请回看笔者这篇文章 《可能是最全最易记的CSS选择器分类大法》 。 切换按钮打算设计一个美观的按钮,可是没有特别思路,就打开iPhone,把设置里的 尺寸和颜色都是与 iPhone切换按钮 一致。思路是使用 <input class="ios-switch" type="checkbox"> .btn { border-radius: 31px; width: 102px; height: 62px; background-color: #e9e9eb; } .ios-switch { position: relative; appearance: none; cursor: pointer; transition: all 100ms; @extend .btn; &::before { position: absolute; content: ""; transition: all 300ms cubic-bezier(.45, 1, .4, 1); @extend .btn; } &::after { position: absolute; left: 4px; top: 4px; border-radius: 27px; width: 54px; height: 54px; background-color: #fff; box-shadow: 1px 1px 5px rgba(#000, .3); content: ""; transition: all 300ms cubic-bezier(.4, .4, .25, 1.35); } &:checked { background-color: #5eb662; &::before { transform: scale(0); } &::after { transform: translateX(40px); } } } 请戳 这里 查看在线演示与源码。 暗黑模式还记得4月4日那次全网开启悼念模式吗?笔者发表了一篇文章 《一行代码全站进入悼念模式》 ,巧妙地使用 html { filter:grayscale(1); } 真的是一行代码,本次也不例外, html { filter: invert(1) hue-rotate(180deg); }
本次的 invert() :反相,反向输出图像着色,值为 hue-rotate() :色相旋转,减弱图像着色,处理非黑白的颜色,值为
依据上述分析的思路,当按钮处于选中状态时使用 .ios-switch { ... &:checked { ... & + .main { filter: invert(1) hue-rotate(180deg); } } } .main { background-color: #fff; transition: all 300ms; } 在 CodePen 上为了更好地展示效果,就使用 优化 细心的同学可能会发现,怎么图片都变成照B超的感觉了。 按照设计原则来说,换肤只针对组件,像一些媒体类型的元素,例如背景、图片、视频等,都是不能直接处理的,需保持其原样。既然 img, video { filter: invert(1) hue-rotate(180deg); } 还有一个问题,背景怎样处理?众所周知,背景是使用 通过 img, video, .avatar, .image, .thumb { filter: invert(1) hue-rotate(180deg); } 在通用网站里,这个类名可自行定义,最可行的方法就是定义一个特定类名 .exclude { filter: invert(1) hue-rotate(180deg); } 改造 上述为了方便演示代码,在 CodePen Demo 里使用 在 <body> <div id="__nuxt">...</div> </body> 往 <body> <input class="ios-switch" type="checkbox"> <div id="__nuxt">...</div> </body> 把以下 .btn { border-radius: 31px; width: 102px; height: 62px; background-color: #e9e9eb; } .ios-switch { position: relative; appearance: none; cursor: pointer; transition: all 100ms; @extend .btn; &::before { position: absolute; content: ""; transition: all 300ms cubic-bezier(.45, 1, .4, 1); @extend .btn; } &::after { position: absolute; left: 4px; top: 4px; border-radius: 27px; width: 54px; height: 54px; background-color: #fff; box-shadow: 1px 1px 5px rgba(#000, .3); content: ""; transition: all 300ms cubic-bezier(.4, .4, .25, 1.35); } &:checked { background-color: #5eb662; &::before { transform: scale(0); } &::after { transform: translateX(40px); } & + #__nuxt { filter: invert(1) hue-rotate(180deg); img, video, .avatar, .image, .thumb { filter: invert(1) hue-rotate(180deg); } } } } #__nuxt { background-color: #fff; transition: all 300ms; } 完成后发现 .ios-switch { position: absolute; right: 0; top: 0; z-index: 99999; outline: none; } 或在 若觉得讲解有点乱,可稍作整理,三步完成上述操作。 打开掘金社区网站 按 往 为了方便复制粘贴,笔者将上述分析得出的CSS代码进行压缩。 <style>.btn,.ios-switch::before,.ios-switch{border-radius:31px;width:102px;height:62px;background-color:#e9e9eb;}.ios-switch{position:relative;appearance:none;cursor:pointer;transition:all 100ms;}.ios-switch::before{position:absolute;content:"";transition:all 300ms cubic-bezier(0.45,1,0.4,1);}.ios-switch::after{position:absolute;left:4px;top:4px;border-radius:27px;width:54px;height:54px;background-color:#fff;box-shadow:1px 1px 5px rgba(0,0,0,0.3);content:"";transition:all 300ms cubic-bezier(0.4,0.4,0.25,1.35);}.ios-switch:checked{background-color:#5eb662;}.ios-switch:checked::before{transform:scale(0);}.ios-switch:checked::after{transform:translateX(40px);}.ios-switch:checked + #__nuxt{filter:invert(1) hue-rotate(180deg);}.ios-switch:checked + #__nuxt img,.ios-switch:checked + #__nuxt video,.ios-switch:checked + #__nuxt .avatar,.ios-switch:checked + #__nuxt .image,.ios-switch:checked + #__nuxt .thumb{filter:invert(1) hue-rotate(180deg);}#__nuxt{background-color:#fff;transition:all 300ms;}.ios-switch{position:absolute;right:0;top:0;z-index:99999;outline:none;}</style> 往 <body> <input class="ios-switch" type="checkbox"> <div id="__nuxt">...</div> </body> 就这样,一个纯CSS的实现方案就能让网站瞬间拥有 总结整个 <body> <input class="ios-switch" type="checkbox"> <div class="main">网站主体</div> </body> .ios-switch { ... &:checked { ... & + .main { filter: invert(1) hue-rotate(180deg); img, video, .exclude { filter: invert(1) hue-rotate(180deg); } } } } .main { background-color: #fff; transition: all 300ms; } 相比于 本方案具有以下特点。
试试无妨,完成了觉得效果不错就赶紧找你老板加薪去:stuck_out_tongue_winking_eye:,哈哈! 到此这篇关于纯CSS免费让网站拥有暗黑模式切换功能的实现代码的文章就介绍到这了,更多相关CSS暗黑模式切换内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论