React.js ライブラリ「use-animate-presence」を使ってアニメーションを作成する

React.js ライブラリ「use-animate-presence」を使ってアニメーションを作成する

ライブラリ「use-animate-presence」をインストールすると、アニメーションを作成することが可能です。ここでは、react.jsでuse-animate-presenceを利用するための手順と簡単な使い方を記述してます。

環境

  • OS  CentOS Linux release 8.0.1905 (Core)
  • node V12.16.3
  • npm 6.14.7
  • React 16.13.0

react.js環境構築

下記のコマンドで構築してます。ここでは、react-appという名前でプロジェクトを作成してます。

create-react-app react-app

use-animate-presenceインストール

作成したプロジェクトに移動して、インストールします。

## 作成したプロジェクトに移動
cd react-app
 
## インストール
npm install use-animate-presence

use-animate-presence使い方

srcディレクトリにsample.jsと名前で下記のコードを記述します。

import React from 'react'
import { useAnimatePresence } from "use-animate-presence";

const variants = {
  x: { from: -800, to: 0 }
};

const Sample = () => {
  const animatedDiv = useAnimatePresence({
    variants,
    initial: "visible"
  });
  return (
    <div>
      <button onClick={() => animatedDiv.togglePresence()}>Toggle</button>
      {animatedDiv.isRendered && (
        <div ref={animatedDiv.ref} className="bg-square" />
      )}
    </div>
  );
}

export default Sample;

次に、srcディレクトリ配下にあるApp.jsを下記のように編集します。

import React from 'react';
import Sample from './sample';
import './App.css';

function App() {
  const style = {
    width: "50%",
    margin: "0 auto",
    marginTop: 150,
  };
  return (
    <div className="App">
      <div style={style}>
        <Sample />
      </div>
    </div>
  );
}

export default App;

実行します。

npm start

ブラウザから http://プライベートIP:3000にアクセスすると、アニメーションが表示されていることが確認できます。