0.2.0 • Published 7 months ago

whatamesh v0.2.0

Weekly downloads
-
License
-
Repository
github
Last release
7 months ago

Whatamesh

Easily create mesh gradients like Stripe.

This project wouldn't be possible without stripe and https://kevinhufnagl.com/

Live Demo

https://whatamesh.vercel.app/

Getting started

Creating your first gradient

<canvas id="gradient-canvas"></canvas>
import { Gradient } from "whatamesh";

const gradient = new Gradient();
gradient.initGradient("#gradient-canvas");
#gradient-canvas {
  width: 100%;
  height: 100%;
  --gradient-color-1: #449ce4;
  --gradient-color-2: #2f8bc1;
  --gradient-color-3: #ccbeee;
  --gradient-color-4: #4c57f6;
}