前提
要素が直線的に移動するアニメーションをReactで作ろうとしています。
画面全体に広がっているdiv.lineanimをクリックすると、その上を、Blockと書かれた100x100pxの箱が左から右に流れるようにしたいです。
アニメーションライブラリはReactTransitionGroupです。Transition
とCSSTransition
がありますが、InlineCSSを使いたいのでTransition
の方を使っています。
発生している問題
しかし、現状ではクリックしても要素がアニメーションされません。onEntered
のタイミングでちゃんと画面右側に移動しているのですが、なぜかアニメーションせずにいきなり表示位置が変わります。onEntering→onEnteredの遷移やthis.state.show
の更新はうまくいっているようなのですが...
onEntering→onEnteredの遷移の間隔はちゃんとthis.duration
で指定した待ち時間があるのですが、その間アニメーションせずにずっと初期位置に留まったままで、onEntered
に到達した瞬間に表示位置が変わるという感じです。
解決につながる方法をご存知でしたら教えていただきたいです。
よろしくお願いします。
該当コード
javascript
1import React, { Component } from 'react' 2import '../css/lineanim.css' 3import { Transition } from 'react-transition-group'; 4 5 6class LineAnim extends Component { 7 constructor(props) { 8 super(props) 9 this.duration = 1000 10 this.state = { 11 show: false 12 } 13 } 14 15 16 defaultStyle = { 17 transition: `transform ${this.duration}ms linear`, 18 opacity: 1, 19 backgroundColor: 'red', 20 width: '100px', 21 height: '100px', 22 transform: `translateX(0px)`, 23 } 24 25 transitionStyles = { 26 entering: { opacity: 1 }, 27 entered: { opacity: 1, transform: `translateX(90vw)` }, 28 exiting: { opacity: 1 }, 29 exited: { opacity: 1 }, 30 }; 31 32 33 setShow = (value) => { 34 this.setState({ show: value }) 35 } 36 37 callBacks = { 38 onEnter: () => console.log("onEnter"), 39 onEntering: () => console.log("onEntering"), 40 onEntered: () => this.onEntered(), 41 onExit: () => console.log("onExit"), 42 onExiting: () => console.log("onExiting"), 43 onExited: () => console.log("onExited") 44 }; 45 onEntered = () => { 46 console.log("onEntered") 47 } 48 49 render() { 50 return ( 51 <div className="lineanim" 52 onClick={() => this.setShow(true)} 53 > 54 <Transition 55 in={this.state.show} 56 timeout={{ 57 appear: 0, 58 enter: this.duration, 59 exit: 0, 60 }} 61 exit={false} 62 {...this.callBacks} 63 > 64 {state => ( 65 <div 66 style={{ 67 ...this.defaultStyle, 68 ...this.transitionStyles[state] 69 }} 70 > 71 Block 72 </div> 73 )} 74 </Transition> 75 </div> 76 ) 77 } 78} 79export default LineAnim
lineanim.css
css
1.lineanim { 2 background-color :"gray"; 3 height:100vh; 4 width:100%; 5}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。