赞
踩
window.document.documentElement.setAttribute('data-theme', 'dark')
设置html的attribute属性scss
的混入@mixin
定义不同主题的样式表,然后在需要的文件中使用@include
加载定义的样式App.vue
中获取当前的主题,并且设置html的attribute ,当没有设置主题时默认设置一个主题,我这里是设置为darklet theme = localStorage.getItem('theme')
if(!theme || theme === 'dark'){
window.document.documentElement.setAttribute('data-theme', 'dark')
}else{
window.document.documentElement.setAttribute('data-theme', 'bright')
}
@mixin header_font_color{
[data-theme="dark"] & {
color:#8B8F9A
}
[data-theme="bright"] & {
color:#484848
}
}
以上css中 [ ] 可以识别到在html标签上设置的属性,所以在html上对应属性发生变化时,就会执行相应的样式,这一步有点类似于平时给div添加一个.active属性,css自动执行相应样式。
mixin.scss
文件,也可全局引入,然后使用@include
引入之前定义的混入函数.form-title{
font-size: 18px;
@include header_font_color() // 这里是引用混入函数
}
switchMode(mode) {
if(!mode || mode === 'dark'){
window.document.documentElement.setAttribute('data-theme', 'dark')
}else{
window.document.documentElement.setAttribute('data-theme', 'bright')
}
},
dark效果
bright效果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。