1.0.1 • Published 5 years ago

@mvarble/react-gif v1.0.1

Weekly downloads
3
License
ISC
Repository
gitlab
Last release
5 years ago

react-gif

This React component uses gif-frames to serve as a controller for .gif images.

Usage

The usage is quite simple. If I would like to look at the first frame of the gif located at /path-to.gif, I simply use the component as so.

<Gif src="/path-to.gif" frame="0" />

One can then see how composition allows for some fun. With cool packages like RxJS, one can create pretty cool logic for animation.

const FunGif = () => {
    const [frame, setFrame] = useState(0);
    const [subscription, setSubscription] = useState(undefined);
    const restartSubscription = () => {
        if (subscription) {
          subscription.unsubscribe();
        }
        setSubscription(coolRxJSObservable.subscribe(setFrame));
    }
    return <Gif src="/my.gif" frame={frame} onClick={restartSubscription} />;
}

Issues

I think there might be some CORS issues right now?

PropTypes

  • src (required): a string to the pathname of the .gif
  • frame (required): a number for the current frame (indexed from 0) to show.
  • failFrame: a string pointing to the pathname of some image for if the .gif hasn't loaded.
  • imgStyle: the proptypes we would like to pass to the <img> tag displaying the current frame.
1.0.1

5 years ago

1.0.0

5 years ago