JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 866
  • Score
    100M100P100Q101581F
  • License MIT

A tiny utility for generating CSS Mesh Gradients

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (meshgrad) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    🎨 Meshgrad meshgrad minzip package size meshgrad package version

    Meshgrad is a tiny utility to generate native-CSS Mesh Gradients.

    Demo - meshgrad.cretu.dev

    Install

    $ npm install meshgrad

    Use

    Vanilla Javascript

    <script type="module">
      import { generateMeshGradient } from "https://cdn.skypack.dev/meshgrad";
    
      // Number of color stops
      const ELEMENTS = 6;
    
      document.getElementById("box");
      box.style = generateMeshGradient(ELEMENTS);
    </script>
    
    <div id="box" class="..." />

    Svelte

    <script>
    import { generateMeshGradient } from 'meshgrad';
    
    // Number of color stops
    const ELEMENTS = 6;
    </script>
    
    <div style={generateMeshGradient(ELEMENTS)} class="..."/>

    React JSX

    import { generateJSXMeshGradient } from "meshgrad";
    
    // Number of color stops
    const ELEMENTS = 6;
    
    export function App() {
      return <div style={generateJSXMeshGradient(ELEMENTS)} className="..." />;
    }