All Projects → motion → Hoverglow

motion / Hoverglow

A React component to make H ☀️ V E R G L O W S

Programming Languages

javascript
184084 projects - #8 most used programming language

hoverglow

Make glows that hover.

npm install --save hoverglow

Props

static defaultProps = {
  width: 380,
  height: 200,
  color: [0,0,0],
  zIndex: 100,
  resist: 0,
  scale: 1,
  opacity: 0.025,
  boundPct: null,
  borderRadius: 100,
  shadowSize: null,
  shadowOffsetTop: 0,
  shadowOffsetLeft: 0,
  clickable: false,
  clickDuration: 150,
  clickScale: 2,
  transition: 1000,
}

Usage

class {
  render() {
    render (
      <container>
        <Glow
          full
          inverse
          scale={0.9}
          boundPct={100}
          color="black"
          opacity={0.17}
          resist={80}
          borderRadius={0}
          shadowSize={70}
          shadowOffsetTop={10}
          zIndex={100}
        />
        <card>
          ...
        </card>
      </container>
    )
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].