0.1.1 • Published 10 months ago

wave-button v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Wave Button

Just button, but it's cool!

preview

Installation

npm i wave-button

Usage

import { WaveButton } from 'wave-button'

import 'wave-button/dist/style.css'

function App() {
  return <WaveButton>Button</WaveButton>
}

try it online.

Style

The css of wave-button only contains the most basic styles.

.wave-button {
  position: relative;
}

.wave-button canvas.motion-wave {
  position: absolute;
  inset: 0px;
  z-index: -10;
}

You may need to customize the width and height, background color, and wave fill color through css. You need to modify the css fill property of the canvas.

Here is the additional style added to the example URL

.wave-button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  outline-color: #000;
}

.wave-button canvas.motion-wave {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (prefers-color-scheme: dark) {
  .wave-button canvas.motion-wave {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    fill: #fff;
  }
}

.wave-button-inner {
  mix-blend-mode: difference;
}
0.1.1

10 months ago

0.1.0

10 months ago

0.0.0

10 months ago