react改變css樣式的方法:1.動態加入class,程式碼如「handleshow() {this.setState({display:true})}...」;2.動態新增一個style,程式碼如「class Demo extends Component{...}」。
本教學操作環境:Windows10系統、react18版、Dell G3電腦。
react怎麼改變css樣式? ?
react的兩種動態改變css樣式的方法
第一種:動態新增class,以點選按鈕讓文字顯示隱藏為demo
import React, { Component, Fragment } from 'react'; import './style.css'; class Demo extends Component{ constructor(props) { super(props); this.state = { display: true } this.handleshow = this.handleshow.bind(this) this.handlehide = this.handlehide.bind(this) } render() { return ( <Fragment> {/*动态添加一个class来改变样式*/} <p className={this.state.display?"active":"active1"}>你是我的唯一</p> <button onClick={this.handlehide}>点击隐藏</button> <button onClick={this.handleshow}>点击显示</button> </Fragment> ) } handleshow() { this.setState({ display:true }) } handlehide() { this.setState({ display:false }) } } export default Demo;
css程式碼:
.active{ display: block; } .active1{ display: none; }
第二種:動態新增一個style,以點擊按鈕讓文字顯示隱藏為demo
import React, { Component, Fragment } from 'react'; class Demo extends Component{ constructor(props) { super(props); this.state = { display2: true } this.handleshow2 = this.handleshow2.bind(this) this.handlehide2 = this.handlehide2.bind(this) } render() { const display2 = { display:this.state.display2 ? 'block' : 'none' } return ( <Fragment> {/*动态添加一个style来改变样式*/} <p style={display2}>你是我的唯一</p> <button onClick={this.handlehide2}>点击隐藏2</button> <button onClick={this.handleshow2}>点击显示2</button> </Fragment> ) } handleshow2() { this.setState({ display2:true }) } handlehide2() { this.setState({ display2:false }) } } export default Demo;
總結:用class來改變css樣式,可以寫多個動態改變的css屬性,看起不雜亂,而用style寫的話,如果寫多個css屬性就會看起複雜。都是個人觀點,不足請指出
推薦學習:《react影片教學》
以上是react怎麼改變css樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!