在react中改变css样式的详细教程来了,大致内容如下:
1、动态添加一个class来改变样式,代码如“<p className={this.state.display?"active":"active1"}></p>”;
2、动态添加一个style来改变样式,代码如“<p style={display2}></p>”。
在react中改变css样式的详细教程
1、动态添加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;
}
2、动态添加一个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;
在react中改变css样式的详细教程就到这里,翼速应用平台内有更多相关资讯,欢迎查阅!
我来说两句