npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-water-wave

v2.0.1

Published

React wrapper for jquery.ripples, a water ripple effect to your background.

Downloads

1,480

Readme

react-water-wave

npm package

This is a React wrapper for sirxemic/jquery.ripples It's so cool!

DEMO

This project was bootstrapped with nwb.

Install

$ yarn add react-water-wave

Example

import React from 'react';
import { render } from 'react-dom';
import WaterWave from 'react-water-wave';
import image from './path-to/demo.jpg';

const App = () => (
  <WaterWave
    imageUrl={image}
  >
    {methods => (
      /* children components */
    )}
  </WaterWave>
);

render(<App />, document.querySelector('#root'));

Check demo folder for more complete example.

Props

Modified from sirxemic/jquery.ripples#options

Important: this plugin requires the WebGL extension OES_texture_float (and OES_texture_float_linear for a better effect) and works only with same-origin images.

| Name | Type | Default | Description | | ----------- | ------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | imageUrl | *string | '' | The URL of the image to use as the background. If absent the plugin will attempt to use the value of the computed background-image CSS property instead. Data-URIs are accepted as well. | | dropRadius | number | 20 | The size (in pixels) of the drop that results by clicking or moving the mouse over the canvas. | | perturbance | number | 0.03 | Basically the amount of refraction caused by a ripple. 0 means there is no refraction. | | resolution | number | 256 | The width and height of the WebGL texture to render to. The larger this value, the smoother the rendering and the slower the ripples will propagate. | | interactive | boolean | true | Whether mouse clicks and mouse movement triggers the effect. | | crossOrigin | string | '' | The crossOrigin attribute to use for the affected image. For more information see MDN. |

Other props will be passed to the <div> wrapper which is the root DOM element.

Children Functions

By using Render Props pattern to provide the plguin's methods, make sure Children is a function that receives an object as its only argument.

Methods

Modified from sirxemic/jquery.ripples#methods

| Method | Parameters | Description | | ---------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | pause | none | Pause the simulation. | | play | none | Play the simulation. | | hide | none | Hide the effect. | | show | none | Show the effect. | | drop | {x: number, y: number, radius: number, strength: number} | Manually add a drop at the element's relative coordinates (x, y). radius controls the drop's size and strength the amplitude of the resulting ripple. | | destroy | none | Remove the effect from the element. | | set | { property: string, value } | propertity should be one of: - dropRadius - perturbance - interactive - imageUrl: setting the image URL will update the background image used for the effect, but the background-image CSS property will be untouched. - dropRadius: setting this won't have any effect until imageUrl is changed. | | updateSize | none | The effect resizes automatically when the width or height of the window changes. When the dimensions of the element changes, you need to call updateSize to update the size of the effect accordingly. |

License

MIT © homerchen19