New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-thanos-snap

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-thanos-snap

React component for creating thanos snapping effect

0.0.7
latest
Source
npm
Version published
Weekly downloads
7
-69.57%
Maintainers
1
Weekly downloads
 
Created
Source

React Thanos Snap

Giving you the ability to easily converting your React components into dust with a single snap!
Inspired the amazing Marvel Avenger movies and Google Thanos ester egg.

Edit react-thanos-snap demo

How to use it 📦

Add this package to your react app project

NPM

npm install react-thanos-snap

Yarn

yarn add react-thanos-snap

Usage ⚙️

Simply wrap your component with the react-thanos-snap component. And set the snap props! This packages also have the ability to restoring back your components by changing the snap to false.

import React, { useState } from 'react';
import InfinityGauntlet from 'react-thanos-snap';

function App(props) {
  const [snap, setSnap] = useState(false);
  return (
    <div>
      <InfinityGauntlet snap={true}>{/** Put your components here **/}</InfinityGauntlet>
      <button onClick={() => setSnap(!snap)}>Snap❗️</button>
    </div>
  );
}

Limitation

  • The components will be wrap with the div that have position: relative; style on it.
  • We use html2canvas. This library have the limitation that can not render the image outside the origin because of the content policy restriction from the browser. if you wish to render image outside your origin, please read kindly use proxy;. This component have the options.proxy props so you can add the proxy on that props.

Credit

  • The idea of this project also comes from red stappler tutorial. I porting the logic to the react and use some modification on the animation. So super thanks to the red stapper for creating the great tutorial!

  • The Amazing infinity gauntlet logo image for this repo is owned by Jamie Ferrato. I own no rights to the image.

Contributing

I ❤️ to have your helping on react-thanos-snap project! Feel free to PR's, add issues or give feedback! Enjoy your mighty power 😎

License

MIT

FAQs

Package last updated on 20 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts