[React] Using the Classnames library for conditional CSS

Source: Internet
Author: User

Classnames is a simple yet versatile JavaScript utility the joins CSS class names based on a set of conditions. We are going to build a simple toggle switch this relies on the state to determine what CSS classes would be applied.

//ClassName = require (' classnames ')Const CLASSNAME =Window.classnames;class Classnamesexample extends React.component {constructor (props) {super (props);  This. State ={isOn:false    }; } togglestate= () = { This. SetState ({isOn:! This. State.ison}); } render () {const circleclasses=ClassName ({circle:true, off:! This. State.ison, on: This. State.ison}); Const Textclasses=ClassName ({textoff:! This. State.ison})  Console.log (circleclasses); //<div classname= "Circle off" ></div>  //<span classname= "Textoff" >{this.state.ison? ' On ': ' OFF '}</span>    return (      <div onclick={ This.togglestate}> <div classname={circleclasses}></div> <span classname={textclasses}>{ This. State.ison? ' On ': ' OFF '}</span> </div>    ); }}window.onload= () = {Reactdom.render (<classnamesexample/>, document.getElementById (' app '));}

To JsBin

[React] Using the Classnames library for conditional CSS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.