欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

react四种组件中DOM样式设置方式详解

程序员文章站 2022-03-21 12:46:00
1、行内样式想给虚拟dom添加行内样式,需要使用表达式传入样式对象的方式来实现行内样式需要写入一个样式对象,而这个样式对象的位置可以放在很多地方例如:render函数里、组件原型上、外链js文件中注意...

1、行内样式

想给虚拟dom添加行内样式,需要使用表达式传入样式对象的方式来实现
行内样式需要写入一个样式对象,而这个样式对象的位置可以放在很多地方
例如:render函数里、组件原型上、外链js文件中
注意:这里的两个括号,第一个表示我们在要jsx里插入js了,第二个是对象的括号

 <p style={{color:'red', fontsize:'14px'}}>hello world</p>

2、使用class

react推荐我们使用行内样式,因为react觉得每一个组件都是一个独立的整体

其实我们大多数情况下还是大量的在为元素添加类名,但是需要注意的是,class需要写成classname(因为毕竟是在写类js代码,会收到js规则的现在,而class是关键字)

import react, { component } from 'react'
1. 外部引入定义的样式
import styles from './style.css'

class classstyle extends component {
  render() {
    // js逻辑
    let classname = cx({
      font: false
    })
    return (
      <>
        <div classname={classname}>hello</div>
        <p classname='setstyle'>样式</p>
        <divcontainer>
          world
        </divcontainer>
      <>
    )
  }
}

export default classstyle

3、classnames不同的条件添加不同的样式

有时候需要根据不同的条件添加不同的样式,比如:完成状态,完成是绿色,未完成是红色。那么这种情况下,我们推荐使用这个包:
目的:
由于react原生动态添加多个classname会报错

import style from './style.css'
<div classname={style.class1 style.class2}</div>

想要得到最终渲染的效果是:

<div class='class1 class2'></div>

下载安装

npm i -s classnames

使用

import classnames from 'classnames'
<div classname=classnames({
    'class1': true,
    'class2': true
    )>
</div>

4、css-in-js

styled-components是针对react写的一套css-in-js框架,简单来讲就是在js中写css。

  • 传统的前端方案推崇"关注点分离"原则,html、css、javascript 应该各司其职,进行分离。
  • 而在react项目中,更提倡组件化方案,自然形成了将html、css、javascript集中编写管理的方式。

styled-components 应该是css-in-js最热门的一个库,通过styled-components,你可以使用es6的标签模板字符串语法,为需要styled的component定义一系列css属性,当该组件的js代码被解析执行的时候,styled-components会动态生成一个css选择器,并把对应的css样式通过style标签的形式插入到head标签里面。动态生成的css选择器会有一小段哈希值来保证全局唯一性来避免样式发生冲突。

1.安装

npm i -s styled-components

定义样式
2.样式js文件

import styled from 'styled-components'
const title = styled.div`
    color:red;
    font-size:16px;
    h3{
        color:blue;
        font-size:20px;
    }
`
export {
    title
}

显示
就像使用常规 react 组件一样使用 title

import react, { component } from 'react'
import { title } from './styles'
class app extends component {
render() {
    return (
        <div>
            <title>
            我只是一个标题
            <h3>你好世界</h3>
            </title>
        </div >
        );
    }
}
export default app

3.样式继承
样式

import styled from 'styled-components'
const button = styled.button`
    font-size: 20px;
    border: 1px solid red;
    border-radius: 3px;
`;

// 一个继承 button 的新组件, 重载了一部分样式
const button2 = styled(button)`
    color: blue;
    border-color: yellow;
`;

export {
    button,
    button2
}

显示

import react, { component } from 'react'
import {
button,
button2
} from './styles'
class app extends component {
render() {
    return (
    <div>
        <button>我是一个按钮1</button>
        <button2>我是一个按钮2</button2>
    </div >
    );
}
}
export default app

4.属性传递
样式

import styled from 'styled-components'
const input = styled.input`
    color: ${props => props.inputcolor || "blue"};
    border-radius: 3px;
`;
export {
    input
}

 

显示

import react, { component } from 'react'
import { input } from './styles'
class app extends component {
render() {
    return (
    <div>
        <input defaultvalue="你好" inputcolor="red"></input>
    </div >
    );
}
}
export default app

到此这篇关于react之四种组件中dom样式设置方式的文章就介绍到这了,更多相关react组件dom样式内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: react 组件 DOM