npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-dark-mode-lib

v1.2.7

Published

Base on CSS mix-blend-mode Proerty,quickly to generate dark mode

Downloads

5

Readme

react-dark-mode-lib

基于react,能够快速和灵活的创建暗黑主题的库

为什么选择?

该类库能够让开发者优雅,快速,灵活的添加暗黑主题功能.同时在原有的基础上支持了组件自定义layer层

安装

Npm

npm install react-dark-mode-lib

Or Yarn

yarn add react-dark-mode-lib

使用方法

最简单的方法是直接导入类库调用. 举个例子:

import DarkMode from 'react-dark-mode-lib'
import { useState } from 'react'
  
const App = () => {
  const [visible, setVisible] = useState(false) 
  return (
    <DarkMode visible={visible} />
  )
}

参数visible是必传的. 其他参数的用法如下表所示

| 参数 | 是否为空 | 默认值 | 类型 | 描述 | | :-----------: | :---: | :--: | :---------------: | :--------------: | | animateName | true | fade | 'fade' | 'scale' | 动画名称 | | amimateTime | true | 500 | Number | 动画执行时间 | | isAnimate | true | true | Boolean | 是否使用动画 | | visible | false | | Boolean | 打开/关闭dark mode 层 | | layerCSS | true | | CSS style | 自定义layer CSS | | layerElements | true | | JSX | layer层上的元素 |

支持样式隔离

如果你需要对特定元素进行样式修改,可以直接对元素进行样式隔离,只需要对样式添加属性:

isolation: isolate

如果某些元素不需要设置为黑色的主题,而需要保持原有的CSS 样式,你只需要添加如下的样式

isolation: isolate;
mix-blend-mode: difference;

提示:

  1. layerElements参数传入的JSX必须最外层为Fragment,因为传入的参数会被解析成为独立的元素直接插入,具体详见示例代码

如果你想了解更多的例子, 你可以从文件夹example中获取更多的代码