web-dev-qa-db-ja.com

状態変化時のReact JSでの遷移効果の実装

Reactページに画像があります。状態が新しい画像に更新されたら、次の遷移効果を実行します。

  • 元の画像はズームインおよびフェードアウトする必要があります
  • 新しい画像もズームインしてフェードインする必要があります

エフェクトは、壁を通過して新しいシーンに到達するのと同じように見えるはずです。

Reactでこれをどのように行うことができますか?

12
kojow7

@pgsandstromが述べたように、 React Transition Group が道です。残念ながら、それは開発者にとってあまり使いやすいものではありません(かなり急な学習曲線)。

これが実際の例です: https://codesandbox.io/s/6lmv669kz

✔元の画像はフェードアウトしながらズームインします

✔新しい画像はフェードインしながらズームインします

TransitionExample.js

import random from "lodash/random";
import React, { Component } from "react";
import { CSSTransition, TransitionGroup } from "react-transition-group";
import uuid from "uuid/v1";

const arr = [
  {
    id: uuid(),
    url: `https://loremflickr.com/600/100?lock=${random(0, 999)}`
  },
  {
    id: uuid(),
    url: `https://loremflickr.com/600/100?lock=${random(0, 999)}`
  },
  {
    id: uuid(),
    url: `https://loremflickr.com/600/100?lock=${random(0, 999)}`
  }
];

export default class TransitionExample extends Component {
  state = {
    index: 0,
    selected: arr[0]
  };

  nextImage = () =>
    this.setState(prevState => {
      const newIndex = prevState.index < arr.length - 1 ? prevState.index + 1 : 0;
      return {
        index: newIndex,
        selected: arr[newIndex]
      };
    });

  render = () => (
    <div className="app">
      <div style={{ marginBottom: 30, height: 100 }}>
        <TransitionGroup>
          <CSSTransition
            key={this.state.selected.id}
            timeout={1000}
            classNames="messageout"
          >
            <div style={{ marginTop: 20 }}>
              <img className="centered-image" src={this.state.selected.url} />
            </div>
          </CSSTransition>
        </TransitionGroup>
      </div>
      <div style={{ textAlign: "center" }}>
        <button
          className="uk-button uk-button-primary"
          onClick={this.nextImage}
        >
          Next Image
        </button>
      </div>
    </div>
  );
}

styles.css

.app {
  margin: 0 auto;
  overflow: hidden;
  width: 700px;
  height: 800px;
}

.centered-image {
  display: block;
  margin: 0 auto;
}

/* starting ENTER animation */
.messageout-enter {
  position: absolute;
  top: 0;
  left: calc(13% + 5px);
  right: calc(13% + 5px);
  opacity: 0.01;
  transform: translateY(0%) scale(0.01);
}

/* ending ENTER animation */
.messageout-enter-active {
  opacity: 1;
  transform: translateY(0%) scale(1);
  transition: all 1000ms ease-in-out;
}

/* starting EXIT animation */
.messageout-exit {
  opacity: 1;
  transform: scale(1.01);
}

/* ending EXIT animation */
.messageout-exit-active {
  opacity: 0;
  transform: scale(4);
  transition: all 1000ms ease-in-out;
}
16
Matt Carlotta

React Transition Group を探しているようです。これらの問題を解決する「公式の」方法です。具体的には、 this を使用する必要があると思います。慣れるのは少し難しいかもしれませんが、理解すれば本当に素敵で強力です。

4
pgsandstrom

これは私のために働いた( link ):

index.js

import React from "react";
import { render } from "react-dom";

import "./styles.scss";

const src1 =
  "https://www.nba.com/dam/assets/121028030322-james-harden-traded-102712-home-t1.jpg";
const src2 = "https://www.nba.com/rockets/sites/rockets/files/wcwebsite.jpg";

var state = {
  toggle: true
};

class App extends React.Component {
  render() {
    const cn1 = "imgFrame " + (state.toggle ? "toggleOut" : "toggleIn");
    const cn2 = "imgFrame " + (state.toggle ? "toggleIn" : "toggleOut");
    return (
      <div>
        <img className={cn1} src={src1} alt={"img1"} />
        <img className={cn2} src={src2} alt={"img2"} />
        <button
          onClick={() => {
            state.toggle = !state.toggle;
            this.forceUpdate();
          }}
        >
          click me to toggle
        </button>
        <h1>Hello</h1>
      </div>
    );
  }
}

render(<App />, document.getElementById("app"));

style.scss

html,
body {
  background-color: papayawhip;
  font-family: sans-serif;

  h1 {
    color: tomato;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.toggleOut {
  animation: fadeout 500ms;
  opacity: 0;
}

.toggleIn {
  animation: fadein 500ms;
  opacity: 1;
}

.imgFrame {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 200px;
  height: 200px;
}

button {
  position: absolute;
  top: 220px;
}
2
Kevin He