react是用js写html的框架,为了在react框架中使用js编写一切代码,使用css-in-js库编写css代码,style-components是近期使用人数最多的css-in-js库,它的优点如下:
官方文档
给div增加样式,生成一个组件,这个组件对应唯一的样式,编译过后会自动给 为了避免浏览器默认样式的影响,需要格式化全局样式,style-components提供了全局样式设置,设置过全局样式之后再添加某元素就是全局样式中的样式了。 需要图片引入,如果像css一样的引入方式,会报错。正确的引入方式是import导入,再以变量的方式引入,如下: 给react定义过的组件添加样式,注意给组件添加样式跟元素标签的不同,组件是 在styled-components中也可以使用css选择器、伪元素、媒体查询以及各类的声明样式。
对应的元素添加一个自动命名的类名import styled from 'styled-components';
const Wrapper = styled.div `
width: 960px;
height: 500px;
background: red;
margin: 0 auto;
`;
render () {
return (
<Wrapper>
<p>基础用法</p>
</Wrapper>
)
}
2.全局样式
import { createGlobalStyle } from 'styled-components';
// 全局样式设置,消去浏览器默认样式的影响
// 相当于把全局样式当成一个组件导出
export const GlobalStyle = createGlobalStyle`
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
html, body {
background: #4DB3B3;;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
text-decoration: none;
color: #fff;
}
// 字体图标的unicode编码
@font-face {
font-family: 'iconfont'; /* project id 897264 */
src: url('//at.alicdn.com/t/font_897264_7ma62sn10m3.eot');
src: url('//at.alicdn.com/t/font_897264_7ma62sn10m3.eot?#iefix') format('embedded-opentype'),
url('//at.alicdn.com/t/font_897264_7ma62sn10m3.woff') format('woff'),
url('//at.alicdn.com/t/font_897264_7ma62sn10m3.ttf') format('truetype'),
url('//at.alicdn.com/t/font_897264_7ma62sn10m3.svg#iconfont') format('svg');
}
// 设置字体图标的大小
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.clearfix:after {visibility: hidden;display: block;font-size: 0;content: ".";clear: both;height: 0;}
.clearfix {zoom: 1;}
`
// JSX中引入
render() {
return (
<div>
<GrobalStyle/>
<Wrapper>
<p>基础用法</p>
{ /* 引入菜单图标 */ }
<span className = 'iconfont menu'></span>
</Wrapper>
<div>
)
}
3.引入图片
import styled from 'styled-components';
import logPic from '../../statics/images/logo.png';
export const Logo = styled.div `
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 56px;
background-image: url(${logPic});
background-size: contain;
`;
4.还可以用组件的props传值
recommendList.map((item) => {
return <RecommendItem key={item} imgUrl={item}/>
})
const RecommendItem = styled.div `
width: 280px;
height: 50px;
background-image: url(${(props) => props.imgUrl});
background-size: contain;
`;
5.塑造组件
styled(Component)
,元素标签是styled.tagname
// 定义组件,这个组件就是普通组件,本来取决于a的样式
const Link = ({className , children}) => (
<a className={className}>
{children}
</a>
)
// 给这个组件添加样式
const StyledLink = styled(Link)`
color: palevioletred;
`
render(
<div>
<Link>普通组件</Link>
<StyledLink>添加了样式的组件</StyledLink>
</div>
);
6.选择器
const Wrapper = styled.div`
/* 应用于Wrapper组件本身和Wrapper组件里的所有html标签 */
color: black;
/* 应用于Wrapper组件里的h3标签 */
h3 {
color: red
}
/* 应用于Wrapper组件里的className为blue的html标签 */
.blue {
color: blue
}
`
render(
<Wrapper>
<p>黑色 p 标签 </p>
<h3>红色 h3 标签</h3>
<p className="blue" >蓝色 p 标签</p>
</Wrapper>
)
&
符号表示引用主组件const Thing = styled.div`
/* 应用于className为blue的Thing组件 */
&.blue{
color: blue;
}
/* 应用于className为red的Thing组件里的所有子组件或者html标签 */
.red {
color: red;
}
`
render(
<React.Fragment>
<Thing className="blue" >Thing组件</Thing>
{/* red要在Thing的包裹元素中才能使用 */}
<Thing>
<p className="red" >p标签</p>
</Thing>
</React.Fragment>
)
const Thing = styled.div`
/* 应用于紧邻Thing组件的下一个Thing组件 */
& + & {
color: red;
}
`
render(
<React.Fragment>
<Thing>第一个Thing组件 默认颜色</Thing>
<Thing>第二个Thing组件 红色</Thing>
</React.Fragment>
)
7.继承
// 用.extend 创建一个新的StyledComponent并且继承它的规则,可添加或覆盖属性
const NewButton = Button.extend`
color: tomato;
border-color: tomato;
`;
// .withComponent 应用其他组件或标签的样式到自己身上
const Link = Button.withComponent('a')