react怎麼實現點選時改變樣式

2022-12-28 14:00:31

react實現點選時改變樣式的方法:1、通過setState中的回撥函數實現點選切換狀態時所執行的功能;2、通過「<Button className={["right-btn", this.state.selected ? "active":null].join(' ')} onClick={this.handleClick.bind(this)}」動態新增className。

本教學操作環境:Windows10系統、react18.0.0版、Dell G3電腦。

react怎麼實現點選時改變樣式?

React點選/hover修改CSS樣式

(1)點選修改樣式

方法一:(typescript寫法)

type state = {
    selected: boolean;
};
 
class Measurement extends Component<{}, state> {
    constructor(props:any) {
        super(props);
        this.state = { selected: false };
    }
 
    handleClick = (e:any) => {
        this.setState({ selected: !this.state.selected }, () => {
            if(!this.state.selected){
                this.clearAll();
            }
        });
 
    }
    private rightBtnStyle: CSSProperties = {
        background:"url(/assets/images/3.png) no-repeat center",
        border: "none",
        color: "white"
    };
    private rightBtnStyle2: CSSProperties = {
        background:"url(/assets/images/1.png) no-repeat center",
        border: "none",
        color: "white"
    };
 
//省略具體功能
 
    render() {
        var currentstyle;
        if(this.state.selected){
            currentstyle=this.rightBtnStyle2;
        }
        else{
            currentstyle=this.rightBtnStyle;
            
        }
        return(
            <div className="tool-widget">
                <Popover placement="left" content={this.content} trigger="click">
                    <Button className="right-btn" style={currentstyle} onClick={this.handleClick.bind(this)}></Button>
                </Popover>
            </div>
        );
    }
};
登入後複製

PS: 此處點選切換狀態時所執行的功能可以通過setState中的回撥函數實現。

方法二:(動態新增className)

上述render換成如下

render() {
        return (
            <div className="tool-widget" id="Measurement">
                <Popover placement="left" content={this.content} trigger="click">
                    <Button className={["right-btn", this.state.selected ? "active":null].join(' ')} onClick={this.handleClick.bind(this)}></Button>
                </Popover>
            </div>
        );
    }
登入後複製

對應的css檔案新增:

#Measurement {
    .right-btn{
        background:url(./images/3.png) no-repeat center;
        border:none;
        color: white;
        width:100%;
        height: 100%
    }
    .right-btn.active{
        background:url(./images/1.png) no-repeat center;
    }
}
登入後複製

推薦學習:《》

以上就是react怎麼實現點選時改變樣式的詳細內容,更多請關注TW511.COM其它相關文章!