react中使⽤css的7种⽅式
第⼀种: 在组件中直接使⽤style
不需要组件从外部引⼊css⽂件,直接在组件中书写。
import react, { Component } from "react";
const div1 = {
width: "300px",
margin: "30px auto",
backgroundColor: "#44014C",  //驼峰法
minHeight: "200px",
boxSizing: "border-box"
};
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div style={div1}>123</div>
<div >
);
}
}
export default Test;
注意事项:
1. 在正常的css中,⽐如background-color,box-sizing等属性,在style对象div1中的属性中,必须转换成驼峰
法,backgroundColor,boxSizing。⽽没有连字符的属性,如margin,width等,则在style对象中不变。2. 在正常的css中,css的值不需要⽤双引好(""),如
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
⽽在react中使⽤style对象的⽅式时。值必须⽤双引号包裹起来。
这种⽅式的react样式,只作⽤于当前组件。
第⼆种: 在组件中引⼊[name].css⽂件
需要在当前组件开头使⽤import引⼊css⽂件。
import React, { Component } from "react";
import TestChidren from "./TestChidren";
import "@/assets/css/index.scss";
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div>
<div className="link-name">123</div>
<TestChidren>测试⼦组件的样式</TestChidren>
</div>
);
}
}
export default Test;
这种⽅式引⼊的css样式,会作⽤于当前组件及其所有后代组件。
第三种: 在组件中引⼊[name].scss⽂件
引⼊react内部已经⽀持了后缀为scss的⽂件,所以只需要安装node-sass即可,因为有个node-sass,scss⽂件才能在node环境上编译成css ⽂件。
>yarn add node-sass
然后编写scss⽂件
//index.scss
.App{
background-color: #282c34;
.header{
min-height: 100vh;
color: white;
}
}
关于如何详细的使⽤sass,请查看sass官⽹
这种⽅式引⼊的css样式,同样会作⽤于当前组件及其所有后代组件。
第四种: 在组件中引⼊[name].module.css⽂件
将css⽂件作为⼀个模块引⼊,这个模块中的所有css,只作⽤于当前组件。不会影响当前组件的后代组件。
import React, { Component } from "react";
import TestChild from "./TestChild";
import moduleCss from "./dule.css";
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div>
<div className={moduleCss.linkName}>321321</div>
<TestChild></TestChild>
</div>
)
;
}
}
export default Test;
这种⽅式可以看做是前⾯第⼀种在组件中使⽤style的升级版。完全将css和组件分离开,⼜不会影响其他组件。
第五种: 在组件中引⼊ [name].module.scss⽂件
类似于第四种,区别是第四种引⼊css module,⽽这种是引⼊ scss module⽽已。
import React, { Component } from "react";
import TestChild from "./TestChild";
import moduleCss from "./dule.scss";
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div>
<div className={moduleCss.linkName}>321321</div>
<TestChild></TestChild>
</div>
);
}
}
export default Test;
同样这种⽅式可以看做是前⾯第⼀种在组件中使⽤style的升级版。
第六种: 使⽤styled-components
需要先安装
>yarn add styled-components
然后创建⼀个js⽂件(注意是js⽂件,不是css⽂件)
//style.js
import styled, { createGlobalStyle } from "styled-components";
export const SelfLink = styled.div`
height: 50px;
border: 1px solid red;
color: yellow;
`;
export const SelfButton = styled.div`
height: 150px;
width: 150px;
color: ${props => lor};
新版耐克reactbackground-image: url(${props => props.src});
background-size: 150px 150px;
`;
组件中使⽤styled-components样式
import React, { Component } from "react";
import { SelfLink, SelfButton } from "./style";
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div>
<SelfLink title="People's Republic of China">app.js</SelfLink>
<SelfButton color="palevioletred" style={{ color: "pink" }} src={fist}>
SelfButton
</SelfButton>
</div>
);
}
}
export default Test;
这种⽅式是将整个css样式,和html节点整体合并成⼀个组件。引⼊这个组件html和css都有了。
它的好处在于可以随时通过往组件上传⼊属性,来动态的改变样式。对于处理变量、媒体查询、伪类等较⽅便的。这种⽅式的css也只对当前组件有效。
具体⽤法,请查看styled-components官⽹
第七种: 使⽤radium
需要先安装
>yarn add radium
然后在react组件中直接引⼊使⽤
import React, { Component } from "react";
import Radium from 'radium';
let styles = {
base: {
color: '#fff',
':hover': {
background: '#0074d9'
}
},
primary: {
background: '#0074D9'
},
warning: {
background: '#FF4136'
}
};
class Test extends Component {
constructor(props, context) {
super(props);
}
render() {
return (
<div>
<button style={[ styles.base, styles.primary ]}>
this is a primary button
</button>
</div>
);
}
}
export default Radium(Test);
对于处理变量、媒体查询、伪类等是不⽅便的。
使⽤Radium可以直接处理变量、媒体查询、伪类等,并且可以直接使⽤js中的数学,连接,正则表达式,条件,函数等。具体⽤法请查看radium官⽹
注意:
在export之前,必须⽤Radium包裹。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。