【发布时间】:2021-10-20 10:37:49
【问题描述】:
我环顾四周,但找不到任何相关的问答。我正在使用 tailwindCSS 在 ReactJS 中构建一个项目,并对站点实施暗模式。一切正常,但现在我的背景图片有一些问题。
我已经在tailwind.config.js中设置了两张图片
darkMode: 'class',
theme: {
extend: {
backgroundImage: (theme) => ({
'code': "url('/src/components/About/coding-bg-dark.png')",
'light-code': "url('/src/components/About/lightcode.png')",
})
},
},
并且在体面的部分有类名
<section id='introduction' className="bg-code dark:bg-light-code bg-cover bg-fixed flex flex-wrap content-center w-full md:h-screen">
但是当我切换暗模式时,图像不会改变,暗图像保持在亮模式。知道我该怎么走吗?
【问题讨论】:
标签: javascript reactjs react-hooks tailwind-css darkmode