styled-components 的用法

2023-10-17 17:30
文章标签 用法 components styled

本文主要是介绍styled-components 的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

用于给标签或组件添加样式

给标签或组件添加样式

import styled from 'styled-components'// styled.button : 给button标签添加样式 
const Button = styled.button`background: palevioletred;border-radius: 3px;border: none;color: white;
`// styled(Button) : 给Button组件添加样式 
const TomatoButton = styled(Button)`background: tomato;
`render(<><Button>I'm purple.</Button><br /><TomatoButton>I'm red.</TomatoButton></>
)

在这里插入图片描述

通过变量赋值

import styled from 'styled-components'const padding = '3em'const Section = styled.section`color: white;/* Pass variables as inputs *//* 使用变量赋值 */padding: ${padding};/* Adjust the background from the properties *//* 通过props改变背景 */background: ${props => props.background};
`render(<Section background="cornflowerblue">✨ Magic</Section>
)

![在这里插入图片描述](https://img-blog.csdnimg.cn/e75a88885202495db69e74f35fcb0e89.png

同时设置属性和样式

import styled from 'styled-components'const Input = styled.input.attrs(props => ({type: 'text',size: props.small ? 5 : undefined,}))`border-radius: 3px;border: 1px solid palevioletred;display: block;margin: 0 0 1em;padding: ${props => props.padding};::placeholder {color: palevioletred;}`render(<><Input small placeholder="Small" /><Input placeholder="Normal" /><Input padding="2em" placeholder="Padded" /></>
)

在这里插入图片描述

临时的props

防止样式组件使用的props传递给Dom元素或其底层React节点,可以使用$标识一个只用于样式的临时props属性

const Comp = styled.div`color: ${props =>props.$draggable || 'black'};
`;render(<Comp $draggable="red" draggable="true">Drag me!</Comp>
);

在这里插入图片描述

shouldForwardProp

通过数组过滤不需要透传的props属性,!['hidden'].includes(prop)

const Comp = 
styled('div')
.withConfig({shouldForwardProp: (prop, defaultValidatorFn) =>!['hidden'].includes(prop)&& defaultValidatorFn(prop),
})
.attrs({ className: 'foo' })
`color: red;&.foo {text-decoration: underline;}
`;render(<Comp hidden draggable="true">Drag Me!</Comp>
);

在这里插入图片描述

ThemeProvider

用于注入主题的辅助组件

import styled, { ThemeProvider } from 'styled-components'const Box = styled.div`color: ${props => props.theme.color};
`render(<ThemeProvider theme={{ color: 'mediumseagreen' }}><Box>I'm mediumseagreen!</Box></ThemeProvider>
)

在这里插入图片描述

直接添加样式,不生成多余的组件

前提:配置Babel

<divcss={`background: papayawhip;color: ${props => props.theme.colors.text};`}
/><Buttoncss="padding: 0.5em 1em;"
/>

Babel会把带有css属性的元素转换为样式组件

import styled from 'styled-components';const StyledDiv = styled.div`background: papayawhip;color: ${props => props.theme.colors.text};
`const StyledButton = styled(Button)`padding: 0.5em 1em;
`<StyledDiv />
<StyledButton />

createGlobalStyle

生成全局样式的辅助函数

import { createGlobalStyle } from 'styled-components'const GlobalStyle = createGlobalStyle`body {color: ${props => (props.whiteColor ? 'white' : 'black')};}
`// later in your app<React.Fragment>// 放在React树的顶端,当组件被渲染时,全局样式就会被注入<GlobalStyle whiteColor /><Navigation /> {/* example of other top-level stuff */}
</React.Fragment>

可以获取 ThemeProvider 提供的主题

import { createGlobalStyle, ThemeProvider } from 'styled-components'const GlobalStyle = createGlobalStyle`body {color: ${props => (props.whiteColor ? 'white' : 'black')};font-family: ${props => props.theme.fontFamily};}
`// later in your app<ThemeProvider theme={{ fontFamily: 'Helvetica Neue' }}><React.Fragment><Navigation /> {/* example of other top-level stuff */}<GlobalStyle whiteColor /></React.Fragment>
</ThemeProvider>

keyframes

添加动画

import styled, { keyframes } from 'styled-components'const fadeIn = keyframes`0% {opacity: 0;}100% {opacity: 1;}
`const FadeInButton = styled.button`animation: 1s ${fadeIn} ease-out;
`

StyleSheetManager

修改或覆盖子组件样式、更改样式的渲染行为 的辅助组件

disableVendorPrefixes 重置组件样式

import styled, { StyleSheetManager } from 'styled-components'const Box = styled.div`color: ${props => props.theme.color};display: flex;
`render(<StyleSheetManager disableVendorPrefixes><Box>If you inspect me, there are no vendor prefixes for the flexbox style.</Box></StyleSheetManager>
)

在这里插入图片描述

stylisRTLPlugin 改变样式渲染方式 从右到左

import styled, { StyleSheetManager } from 'styled-components'
import stylisRTLPlugin from 'stylis-plugin-rtl';const Box = styled.div`background: mediumseagreen;border-left: 10px solid red;
`render(<StyleSheetManager stylisPlugins={[stylisRTLPlugin]}><Box>My border is now on the right!</Box></StyleSheetManager>
)

在这里插入图片描述

isStyledComponent

用于判断组件是否被 styled 渲染过

import React from 'react'
import styled, { isStyledComponent } from 'styled-components'
import MaybeStyledComponent from './somewhere-else'let TargetedComponent = isStyledComponent(MaybeStyledComponent)? MaybeStyledComponent: styled(MaybeStyledComponent)``const ParentComponent = styled.div`color: cornflowerblue;${TargetedComponent} {color: tomato;}
`

withTheme

一个高阶函数,用于从 ThemeProvider 获取当前主题并将其作为props传递给包装的组件

import { withTheme } from 'styled-components'class MyComponent extends React.Component {render() {console.log('Current theme: ', this.props.theme)// ...}
}export default withTheme(MyComponent)

所有 styled 组件都会收到主题的props,因此仅当你有其它原因需要访问主题时才这样用

ThemeConsumer

ThemeProvider的配套组件,可以在渲染期间动态访问主题

import { ThemeConsumer } from 'styled-components'export default class MyComponent extends React.Component {render() {return (<ThemeConsumer>{theme => <div>The theme color is {theme.color}.</div>}</ThemeConsumer>)}
}

所有 styled 组件都会收到主题的props,因此仅当你有其它原因需要访问主题时才这样用

支持的样式写法

& 是我们为该样式组件生成的唯一类名替换,从而可以易于拥有复杂的逻辑

const Example = styled.div`/* all declarations will be prefixed */padding: 2em 1em;background: papayawhip;/* pseudo selectors work as well */&:hover {background: palevioletred;}/* media queries are no problem */@media (max-width: 600px) {background: tomato;/* nested rules work as expected */&:hover {background: yellow;}}> p {/* descendant-selectors work as well, but are more of an escape hatch */text-decoration: underline;}/* Contextual selectors work as well */html.test & {display: none;}
`;render(<Example><p>Hello World!</p></Example>
);

这篇关于styled-components 的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/226873

相关文章

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Springboot中Jackson用法详解

《Springboot中Jackson用法详解》Springboot自带默认json解析Jackson,可以在不引入其他json解析包情况下,解析json字段,下面我们就来聊聊Springboot中J... 目录前言Jackson用法将对象解析为json字符串将json解析为对象将json文件转换为json

bytes.split的用法和注意事项

当然,我很乐意详细介绍 bytes.Split 的用法和注意事项。这个函数是 Go 标准库中 bytes 包的一个重要组成部分,用于分割字节切片。 基本用法 bytes.Split 的函数签名如下: func Split(s, sep []byte) [][]byte s 是要分割的字节切片sep 是用作分隔符的字节切片返回值是一个二维字节切片,包含分割后的结果 基本使用示例: pa

UVM:callback机制的意义和用法

1. 作用         Callback机制在UVM验证平台,最大用处就是为了提高验证平台的可重用性。在不创建复杂的OOP层次结构前提下,针对组件中的某些行为,在其之前后之后,内置一些函数,增加或者修改UVM组件的操作,增加新的功能,从而实现一个环境多个用例。此外还可以通过Callback机制构建异常的测试用例。 2. 使用步骤         (1)在UVM组件中内嵌callback函

这些ES6用法你都会吗?

一 关于取值 取值在程序中非常常见,比如从对象obj中取值 const obj = {a:1b:2c:3d:4} 吐槽: const a = obj.a;const b = obj.b;const c = obj.c;//或者const f = obj.a + obj.b;const g = obj.c + obj.d; 改进:用ES6解构赋值

2021-8-14 react笔记-2 创建组件 基本用法

1、目录解析 public中的index.html为入口文件 src目录中文件很乱,先整理文件夹。 新建components 放组件 新建assets放资源   ->/images      ->/css 把乱的文件放进去  修改App.js 根组件和index.js入口文件中的引入路径 2、新建组件 在components文件夹中新建[Name].js文件 //组件名首字母大写

Cmake之3.0版本重要特性及用法实例(十三)

简介: CSDN博客专家、《Android系统多媒体进阶实战》一书作者 新书发布:《Android系统多媒体进阶实战》🚀 优质专栏: Audio工程师进阶系列【原创干货持续更新中……】🚀 优质专栏: 多媒体系统工程师系列【原创干货持续更新中……】🚀 优质视频课程:AAOS车载系统+AOSP14系统攻城狮入门视频实战课 🚀 人生格言: 人生从来没有捷径,只有行动才是治疗恐惧

关于断言的部分用法

1、带变量的断言  systemVerilog assertion 中variable delay的使用,##[variable],带变量的延时(可变延时)_assertion中的延时-CSDN博客 2、until 的使用 systemVerilog assertion 中until的使用_verilog until-CSDN博客 3、throughout的使用   常用于断言和假设中的

ExpandableListView的基本用法

QQ上的好友列表在Android怎么实现,有一个最简单的方法,那就是ExpandableListView,下面简单介绍一下ExpandableListview的用法。 先看看效果图,没有找到大小合适的图片,所以凑合着看吧。     一、准备工作(界面,和需要的数据)             <? xml   version = "1.0"   encoding =

Hbase 查询相关用法

Hbase 查询相关用法 public static void main(String[] args) throws IOException {//Scan类常用方法说明//指定需要的family或column ,如果没有调用任何addFamily或Column,会返回所有的columns; // scan.addFamily(); // scan.addColumn();// scan.se