Skip to content

endurance21/firefly-react

Repository files navigation

screen-capture (20)

A React Component for building interactive animation of fireflies on websites.

LIVE Playgorund

https://codesandbox.io/s/example-firefly-react-forked-9gsye?file=/src/App.js

USAGE :

npm i firefly-react

Import it into your React Project

import Firefly from "firefly-react";

in app.js ( 1 line code and done 😎) :

   <Firefly
      canvasWidth={200}  // you can choose any positive width suitable for your purpose
      canvasHeight={300} // you can choose any positive height suitable for your purpose
   />

Customizations

Colors

One can add an Array of colors and the fireflies thus generated will get its color(can be hex-code or in rbga format) from this array in a random fashion :

const colors = ["Blue ", "Green", "Red", "Orange"];
   <Firefly
      canvasWidth={200}  // you can choose any positive width suitable for your purpose
      canvasHeight={300} // you can choose any positive height suitable for your purpose
      colors={colors}
   />

Responsive

To make the canvas screen responsive, update the height and width of the canvas using canvasHeight and canvaswidth props. Here is an example using react-hooks.

const [canvasHeight, setCanvasHeight] = useState(window.innerHeight);
const [canvasWidth, setCanvasWidth] = useState(window.innerWidth);

window.addEventListener(
   "resize",
   (e) => {
   setCanvasHeight(window.innerHeight);
   setCanvasWidth(window.innerWidth);
   },
   false
);



   <Firefly
      canvasWidth={canvasWidth} 
      canvasHeight={canvasHeight} 
   />

Css styling

Use className prop to assign an className to the component and apply any custom css accordingly.

  <Firefly
      className='firefly-react-example-classname' 
   />
.firefly-react-example-classname{
  position: absolute;
  top: 0;
  left: 0;
  z-index:1
}

Props :

Props Value default description
canvasWidth [0,SAFE-INT] HMTL CANVAS DEFAULT sets width of the canvas
canvasHeight [0-SAFE_INT] HMTL CANVAS DEFAULT sets the height of the canvas
colors [ ] [ "#f15bb5","#f72585"] fireflies thus generated will be randomly alloted the colors from this array
className string "" add a className to the canvas element

Want to Contribute ?

Contributing to Open source is self rewarding and i love being part of it , if you too are excited about it , i would love to collaborate ♥️ . Currently we need help with :

  • Using multithreading concepts to boost our canvas rendering
  • particle pooling and hence performance optimization
  • I do believe this project has immense potential to offer some good out there , so any proposal for new feature addition would be highly appreciated .
  • Strong type checking and dynamic object validation would also make this library robust

Quote

To learn and not to do is really not to learn. To know and not to do is really not to know.

~Stephen R. Covey

Thank you for reaching ♥️

I find coffe to be my best acquaintance while coding.

Buy Me A Coffee

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published