1.0.1 • Published 3 years ago

@practical-react-hooks/use-fade-in v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@practical-react-hooks/use-fade-in

React Hook to fade in any element.

Installation

yarn

yarn add @practical-react-hooks/use-fade-in

npm

npm i @practical-react-hooks/use-fade-in

Usage

import React from "react";
import useFadeIn from "@practical-react-hooks/use-fade-in";

const App = () => {
  const fadeIn = useFadeIn(5, 10);
  return (
    <div className="App">
      <h1 {...fadeIn}>Hello World</h1>
    </div>
  );
};

Arguments

ArgumentTypeDescriptionRequiredDefault value
durationnumberSets the duration of the transition. In secondsno1
delaynumberDelays of transition's start. In secondsno0

Return

NameTypeDescription
refReact RefA ref created to fadeIn the element
styleObjectStyle object containing {opacity:0} to give to the element as a default