Home > Web Front-end > JS Tutorial > body text

CSS usage in React.js

php中世界最好的语言
Release: 2018-03-13 14:56:50
Original
2920 people have browsed it

This time I will bring you the use of CSS in React.js. What are the precautions for using CSS in React.js?The following is a practical case, let’s take a look.

Inline style (not recommended for web development, but widely used in React-Native)

The disadvantage is that animation, pseudo-classes (hover), etc. cannot be used

import React from 'react';export default class ComponentHeader extends React.Component {
render() {    const styleComponentHeader = {        header: {            backgroundColor: '#333333',            color: '#FFFFFF',            "padding-top": '15px',            paddingBottom: '15px'
        },        // 还可以定义其他的样式
    };    return (        
            

这里是头部

        
    )   } }
Copy after login

CSS usage in React.js

2.

Expression in inline style: When clicked, padding-top and paddingBottom become larger or smaller

import React from 'react';export default class ComponentHeader extends React.Component {constructor() {  super();  this.state = {      miniHeader: false
  };
}
switchHeader() {  this.setState({      miniHeader: !this.state.miniHeader
  });
};
render() {  const styleComponentHeader = {      header: {          backgroundColor: '#333333',          color: '#FFFFFF',          "padding-top": this.state.miniHeader ? '3px' : '15px',          paddingBottom: this.state.miniHeader ? '3px' : '15px'
      },      // 还可以定义其他的样式
  };      return (          

这里是头部

) } }
Copy after login

CSS usage in React.js

3.CSS

ModularizationFirst npm the following three plug-ins

"babel-plugin-react-html-attrs": "^2.0.0","style-loader": "^0.13.1","css-loader": "^0.25.0"
Copy after login

Use the babel-plugin-react-html-attrs plug-in, when adding class to the label You can use class directly

这里是头部

Copy after login

You cannot use class before using this plug-in, you can only use classname

这里是头部

Copy after login

4. Interconversion between JSX style and CSS style

CSS usage in React.js

Copy the code on the right to where you want to use it. The specific usage is as follows:

import React from 'react';export default class ComponentFooter extends React.Component {
render() {    var footerConvertStyle = {        "miniFooter": {            "backgroundColor": "#333333",            "color": "#ffffff",            "paddingLeft": "20px",            "paddingTop": "3px",            "paddingBottom": "3px"
        },        "miniFooter_h1": {            "fontSize": "15px"
        }
    }    return (        

这是页脚, 一般放置版权的一些信息.

) } }
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Recommended reading:

Vue.js uses transition animation to create route jump animation

Vue.js route naming and named views

Route parameters for Vue.js

The above is the detailed content of CSS usage in React.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!