第 1 步:运行设置命令
打开终端并运行以下命令来创建具有暗模式功能的完整 Tailwind 项目:
mkdir dark-mode-tailwind && cd dark-mode-tailwind && npm init -y && npm install -D tailwindcss postcss autoprefixer && npx tailwindcss init && echo '@tailwind base;\n@tailwind components;\n@tailwind utilities;' > styles.css && echo '<!DOCTYPE html>\n<html lang="en"> <p>Step 2: Open the Project<br> After the command completes, open the folder in your code editor. Your files are ready, and you can test the project in any live server, such as:<br> </p> <pre class="brush:php;toolbar:false">npx live-server
命令的作用
创建一个项目文件夹 (dark-mode-tailwind) 并导航到其中。
使用 npm 初始化项目并安装 Tailwind CSS 依赖项。
配置 Tailwind CSS 并创建所需的 styles.css 文件。
添加带有暗模式切换按钮的基本index.html。
编写 script.js 文件以使用 localStorage 处理暗模式逻辑。
构建 Tailwind CSS 文件以供立即使用。
测试深色模式
在浏览器中打开index.html。
点击“切换深色模式”按钮即可切换主题。
借助 localStorage,即使刷新后您的偏好也将持续存在!
享受编码的乐趣! ?
以上是如何通过一个命令在 Tailwind CSS 中实现深色模式的详细内容。更多信息请关注PHP中文网其他相关文章!