当前位置:   article > 正文

vue实现一键换肤效果(白天晚上模式切换)_黑天白夜灯切换vue

黑天白夜灯切换vue

1、创建src/assets/style/_themes.css

2、将themes.css在main.js全局引入

 

 3、在_themes.css定义主题  (可以自行定义更多的主题)

  1. :root[theme='light']{ /*白天主题*/
  2. --bgColor:#fff; /*白天大的背景颜色*/
  3. --textColor:#000; /*白天文本颜色*/
  4. --titleColor:blue; /*白天标题颜色*/
  5. }
  6. :root[theme='dark']{ /*晚上主题*/
  7. --bgColor:#000; /*晚上大的背景颜色*/
  8. --textColor:#fff; /*晚上文本颜色*/
  9. --titleColor:yellow; /*晚上标题颜色*/
  10. }

4、在组件中使用主题颜色

5、根据条件来切换主题(我这里是定义了两个按钮进行主题的切换)

6、每次切换以后将当前主题名称保存至本地  避免下次打开页面主题丢失  初次加载的时候设置一个默认主题

 7、看看效果吧

8、完整代码

_themes.css

  1. :root[theme='light']{ /*白天主题*/
  2. --bgColor:#fff; /*白天大的背景颜色*/
  3. --textColor:#000; /*白天文本颜色*/
  4. --titleColor:blue; /*白天标题颜色*/
  5. }
  6. :root[theme='dark']{ /*晚上主题*/
  7. --bgColor:#000; /*晚上大的背景颜色*/
  8. --textColor:#fff; /*晚上文本颜色*/
  9. --titleColor:yellow; /*晚上标题颜色*/
  10. }

 组件中使用

  1. <template>
  2. <div class="daytime">
  3. <div class="btn"
  4. @click="changeLight">点击切换白天主题</div>
  5. <div class="btn"
  6. @click="changeDark">点击切换晚上主题</div>
  7. <div class="poetry">
  8. <h1>沁园春·雪</h1>
  9. <p>北国风光,千里冰封,万里雪飘。</p>
  10. <p>望长城内外,惟余莽莽;大河上下,顿失滔滔。</p>
  11. <p>山舞银蛇,原驰蜡象,欲与天公试比高。</p>
  12. <p>须晴日,看红装素裹,分外妖娆。</p>
  13. <p>江山如此多娇,引无数英雄竞折腰。</p>
  14. <p>惜秦皇汉武,略输文采;唐宗宋祖,稍逊风骚。</p>
  15. <p>一代天骄,成吉思汗,只识弯弓射大雕。</p>
  16. <p>俱往矣,数风流人物,还看今朝。</p>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {}
  24. },
  25. created() {
  26. let theme = localStorage.getItem('theme') ? JSON.parse(localStorage.getItem('theme')) : 'light'
  27. document.documentElement.setAttribute('theme', theme)
  28. },
  29. computed: {},
  30. methods: {
  31. changeLight() {
  32. document.documentElement.setAttribute('theme', 'light')
  33. localStorage.setItem('theme', JSON.stringify('light'))
  34. },
  35. changeDark() {
  36. document.documentElement.setAttribute('theme', 'dark')
  37. localStorage.setItem('theme', JSON.stringify('dark'))
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .daytime {
  44. width: 100%;
  45. height: 1000px;
  46. background-color: var(--bgColor);
  47. .btn {
  48. color: red;
  49. width: 200px;
  50. height: 30px;
  51. line-height: 30px;
  52. text-align: center;
  53. cursor: pointer;
  54. }
  55. .poetry {
  56. position: absolute;
  57. top: 50%;
  58. left: 50%;
  59. transform: translateX(-50%) translateY(-50%);
  60. h1 {
  61. color: var(--titleColor);
  62. }
  63. p {
  64. color: var(--textColor);
  65. }
  66. }
  67. }
  68. </style>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/108985
推荐阅读