详解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样式的要领的文章就先容到这了,更多相关react动态改变css样式内容请搜索剧本之家以前的文章或继承欣赏下面的相关文章但愿各人今后多多支持剧本之家!

您大概感乐趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsjffz.html