Skip to content

Latest commit

 

History

History
80 lines (60 loc) · 1.33 KB

README.md

File metadata and controls

80 lines (60 loc) · 1.33 KB

React Metaballs

Data-driven React component rendering SVG metaballs, animated using d3.

NPM JavaScript Style Guide

Example

See a demo here

metaball anim

Install

npm install --save react-metaballs

Usage

import React, { Component } from 'react'

import ReactMetaballs from 'react-metaballs'

const circles = [
  {
    cx: 200,
    cy: 100,
    r: 64
  },
  {
    cx: 300,
    cy: 300,
    r: 96
  },
  {
    cx: 250,
    cy: 475,
    r: 56
  },
  {
    cx: 350,
    cy: 675,
    r: 128
  },
  {
    cx: 600,
    cy: 800,
    r: 76
  }
]

class Example extends Component {
  render () {
    return (
      <Metaballs
        ref={this.metaballs}
        easement={d3.easeBackOut}
        circles={circles} />
    )
  }
}

Compatibility

Tested on modern browsers and IE 11.

metaball IE

Performance

Basic testing shows the SVG path animation is able to comfortably perform at or above 60fps.

metaball performance

License

MIT © Tombarr