react改变css样式的两种方法
今天小编给大家分享的是react改变css样式的两种方法,相信很多人都不太了解,为了让大家更加了解,所以给大家总结了以下内容,一起往下看吧。一定会有所收获的哦。
react改变css样式的方法:1、动态添加class,代码如“handleshow() {this.setState({display:true})}...”;2、动态添加一个style,代码如“class Demo extends Component{...}”。
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改变css样式的两种方法就分享到这里了,希望以上内容可以对大家有一定的参考价值,可以学以致用。如果喜欢本篇文章,不妨把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:niceseo99@gmail.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
评论