今天小編給大家分享的是react改變css樣式的兩種方法,相信很多人都不太了解,為了讓大家更加了解,所以給大家總結(jié)了以下內(nèi)容,一起往下看吧。一定會有所收獲的哦。
創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的牡丹網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
react改變css樣式的方法:1、動態(tài)添加class,代碼如“handleshow() {this.setState({display:true})}...”;2、動態(tài)添加一個style,代碼如“class Demo extends Component{...}”。
react如何改變css樣式
react的兩種動態(tài)改變css樣式的方法
第一種:動態(tài)添加class,以點(diǎn)擊按鈕讓文字顯示隱藏為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 (
css代碼:
.active{
display: block;
}
.active1{
display: none;
}
第二種:動態(tài)添加一個style,以點(diǎn)擊按鈕讓文字顯示隱藏為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 (
總結(jié):用class來改變css樣式,可以寫多個動態(tài)改變的css屬性,看起不雜亂,而用style寫的話,如果寫多個css屬性就會看起復(fù)雜。都是個人觀點(diǎn),不足請指出
關(guān)于react改變css樣式的兩種方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的參考價值,可以學(xué)以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。