class ButtonComponent extends Component { constructor(props) { super(props); this.state = { imageUrl: "/images/button_shadow.png", } } scrollToTop = () => { scroll.scrollToTop(); }; render() { return( <div id="scroll scroll-up" className="scroll scroll-up" onMouseEnter={() => this.setState({ imageUrl: '/images/button_noshadow.png' })} onMouseLeave={() => this.setState({ imageUrl: '/images/button_shadow.png' })} > <div id="arrowbounce" className="arrowbounce"> <img src={this.state.imageUrl} onClick={this.scrollToTop} /> </div> </div> ); } }
ClassName arrowbounceにこのプログラムの中でcssを適用するにはどうしたらよろしいでしょうか?
できれば画面右下に固定する様にしたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。