css还能够这么写?

做为一个前端,毫无疑问css确定是最基础的一项技能之一。css是一个标记语言,没有编程语言的诸多特性,好比变量定义,复用,嵌套等,因此相应的开发效率也受到限制。
在追求效率和自动化的当下,涌现了一批解决方案,像是css预编译语言Less, Sass等,解决css命名冲突的css-modules,react中css的最佳实践styled-components等。

本篇文章不在于探讨css的技巧学习,而在于讨论css的这些提高开发效率的方案。javascript

Less

Less, Sass, Styluscss预编译语言,给css赋予了编程特性。拿 Less 来讲,它扩展了 CSS 语言,增长了变量、Extend、Mixin、函数等特性,也支持import导入文件,使 CSS 更易维护和扩展。本篇简单介绍一下Less的一些特性,详细的教程能够上Less官网查看。css

怎么样使用Less?

咱们能够在 命令行 直接使用less,也能够经过 node api 去使用less,或者经过 webpackgulpgrunt等的 less插件 去使用,甚至能够在浏览器端使用,很是灵活。这里简单说一下在命令行中使用less。html

$ npm i less -g
# 当less被安装以后,就可使用全局命令lessc
$ lessc bootstrap.less bootstrap.css

1、变量

变量使css代码更易维护。前端

好比有个主色 #ef8376,在整个样式表中,咱们有多处使用这个颜色。若是主色变更的话,好比主色要变成 #000,咱们就要手动去全局替换这个变量,而有一些 #ef8376咱们却不但愿替换掉,这样就形成了极大的困扰。vue

若是咱们使用less的话,就能够这么写:java

@primaryColor: #ef8376;

.banner {
  background-color: @primaryColor;
  .text {
    color: @primaryColor;
    border-color: #ef8376;
  }
}

咱们要修改主色,只须要将 @primaryColor 修改成 '#000'便可。node

2、Extend

Extend让咱们能够用伪类的写法去合并一些类react

好比:webpack

nav ul {
  &:extend(.inline);
  background: blue;
}
.inline {
  color: red;
}

会编译成:git

nav ul {
  background: blue;
}
.inline,
nav ul {
  color: red;
}

3、Mixin

Mixin既有Extend继承已有类的特性,也有其余高级的特性,好比支持变量,支持像使用方法同样使用mixin

支持变量

.foo (@bg, @color: '#000') {
  background: @bg;
  color: @color;
}
.unimportant {
  .foo(#f5f5f5);
}
.important {
  .foo(#121212) !important;
}

会编译成:

.unimportant {
  background: #f5f5f5;
  color: #000;
}
.important {
  background: #121212 !important;
  color: #000 !important;
}

像方法同样使用Mixin

.count(@x, @y) {
  @margin: ((@x + @y) / 2);
  @padding: ((@x + @y) / 4)
}

div {
  margin: .count(16px, 16px)[@margin];
  padding: .count(16px, 16px)[@padding];
}

.loop(@counter) when (@counter > 0) {
  .loop((@counter - 1));    // next iteration
  width: (10px * @counter); // code for each iteration
}

.text {
  .loop(5); // launch the loop
}

会编译成:

div {
  margin: 16px;
  padding: 8px;
}

.text {
  width: 10px;
  width: 20px;
  width: 30px;
  width: 40px;
  width: 50px;
}

4、Import导入文件

// head.less
.banner {
  background-color: red;
}
// footer.css
.footer {
  background-color: green;
}
@import './head.less';
@import css './footer.css';

会编译成:

.banner {
  background-color: red;
}
.footer {
  background-color: green;
}

5、方法

Less支持一些经常使用的辅助方法

好比darkenlighten用来加深或淡化颜色。

body {
  background-color: darken(hsl(90, 80%, 50%), 20%);
  color: lighten(hsl(90, 80%, 50%), 20%);
}

会编译成:

body {
  background-color: #4d8a0f;
  color: #b3f075;
}

css-modules

css-modules 相较于 Less 来讲有所不一样,css-modules 只是拓展了 css 的写法,解决了css的块做用域和全局做用域,而不是将css变成一门编程语言。

为何须要 css-modules?

Css一直以来都有一个问题,就是css定义的类都是全局的,咱们虽然能够经过不一样的命名空间或是加前缀的方式去避免类的混淆和冲突,可是在写法上却不是那么的干净利落,并且一旦重构css的话,也会形成很大的困扰。

为了让咱们能随意的写类名而不须要考虑冲突或是覆盖,css-modules 便出现了。

css-modules提供了 块做用域 :local 和 全局做用域 :global,这两个特性就能很好的避免css的命名冲突。

怎么使用?

首先来讲一下怎么使用 css-modules

当咱们在使用webpack的时候,最简单的用法是经过 css-loader 来开启对 css-modules 的支持。以下:

{
  test: /\.css$/,
  use: [
    {
      loader: 'css-loader',
      options: {
        modules: true, // 开启对css-modules的支持
        localIdentName: '[name]__[local]___[hash:base64:5]' // 生成的类名的格式
      }
    }
  ]
}

同时能够配合less-loaderpostcss使用。注意:在结合less-loader的时候可能出现对url的兼容问题。见:https://github.com/webpack-co... 。并且 less-loader 的维护者认为结合 less-loadercss-modules没什么必要。。

1、做用域

css-modules提供了两个关键字,:local:global

好比这种写法:

// App.css
:local(.banner) {
  background: red;
}
:local(.banner .text) {
  color: yellow;
}
.center {
  color: green;
}
:global(.global-class-name) {
  color: blue;
}

会编译成:

.App__banner___3NbRo {
  background: red;
}
.App__banner___3NbRo .App__text___2j1Ht {
  color: yellow;
}
.App__center___3eDJo {
  background: green;
}
.global-class-name {
  color: blue;
}

:global 声明的类不会被编译,会保持不变。

同时,咱们在js中引入css,写法以下:

/**
 * styles是什么呢?styles实际上是一个通过处理过的类名的集合。
 * 
 * 好比上边这个css文件,处理后的style对象是这样的:
 * 
 * {
 *   banner: 'App__banner___3NbRo',
 *   text: 'App__banner___3NbRo App__text___2j1Ht',
 *   center: 'App__center___3eDJo'
 * }
 * 
 * 这样咱们就能够理解为何css-modules能够避免明明冲突了。
 * 命名都按照咱们设置的hash规则重写了,保证了类名的惟一,而且在生成的html结构里也进行了替换,还何来冲突?
 */
import styles from './App.css';
import React from 'react';

const html = () => {
  return <div class={styles.banner}>
    <span class={style.text}>HAHAHAHHAHAHA</span>
  </div>;
};

export default html;

2、Composition - 混合组成

css-modules支持多个类的混合组成。好比:

.colorRed {
  color: red
}

.text {
  composes: colorRed;
  background: #000;
}

会编译成:

.App__colorRed___yoG_f {
  color: red
}

.App__text___2j1Ht {
  background: #000;
}

能够看到,生成的css中并无任何的变化,那这个composes作了什么呢?其实在经过js引用的对象内发生了变化。以下:

{
  "colorRed": "App__colorRed___yoG_f",
  "text": "App__text___2j1Ht App__colorRed___yoG_f"
}

那么在经过 styles.text 使用 text 类的时候,其实也同时使用了 colorRed 类,达到了混合组成的效果。

3、Import - 引用

css-modules 支持引用其余文件的类。

好比:

// green.css
.green {
  color: green;
}
// text.css
.text {
  background-color: red;
  composes: green from './green.css';
}

会编译成:

.green__green___1v20L {
  color: green;
}
.text__text__2jfs0 {
  background-color: red;
}

其实跟 同样,生成的css并无什么改动,其实改变的是生成js对象的内容:

import styles from './text.css';

// styles = {green: 'green__green___1v20L', text: 'text__text__2jfs0 green__green___1v20L'}

styled-components

styled-components, 多是React中css的最佳实践了,若是你喜欢,你也能够叫它styled-react-components : )。想象一下,像写react组件同样去写css,是一种什么样的体验?

以下,你能够这样来写样式:

import React from 'react';
import styled from 'styled-components';

const Title = styled.h1`
  font-size: 1.5em;
  text-align: center;
  color: palevioletred;
`;

const Wrapper = styled.section`
  padding: 4em;
  background: papayawhip;
`;

export default () => <Wrapper>
  <Title>Hello World, this is my first styled component!</Title>
</Wrapper>;

styled-components会自动帮你在 运行时 生成一个样式表,插入到 <head> 下的 <style> 标签中,好比上边的代码,会在运行是生成以下代码:

<head>
  <style data-styled-components>
    /* sc-component-id: model__Title-cooNNd */
    .model__Title-cooNNd {} .jHitSF{font-size:1.5em;text-align:center;color:palevioletred;}
    /* sc-component-id: model__Wrapper-bEJrHK */
    .model__Wrapper-bEJrHK {} .ipFfju{padding:4em;background:papayawhip;}
  </style>
</head>
<body>
  <section class="model__Wrapper-bEJrHK ipFfju">
    <h1 class="model__Title-cooNNd jHitSF">Hello World, this is my first styled component!</h1>
  </section>
</body>

咱们能够看到,咱们在js中写的样式,被插入到了 <style>中,而且生成了一个随机的类名,并且这个类名,也是被 react-dom 生成的DOM结构所引用。

受益于 styled-components,咱们贯彻了 react万物皆组件 的思想,使咱们在css的组件化上又推动了一步(发布一个纯css组件试试?) : )

在这篇文章里,我会简单探讨一下 style-components 的用法和特性。

如何使用?

styled-components 通常配合着 react 使用,固然也支持 vuevue-styled-components)。抛开这两个来讲,你也能够直接在原生js下使用:

<script src="https://unpkg.com/styled-components/dist/styled-components.min.js"></script>

咱们这里讲配合 react 的用法。

1、首先,安装依赖

$ npm i styled-components
# 配合着babel来使用
$ npm i -D babel-plugin-styled-components

2、配置 .babelrc (固然,咱们须要安装 webpack ,配置webpack的config,而且须要须要安装 babel-preset-envbabel-preset-react,这里不赘述)

{
  "presets": ["env", "react"],
  "plugins": ["styled-components"]
}

通过以上简单的配置以后,就能够在项目中使用 styled-components 了。

工具

固然,如今的 styled-components 也是支持了 stylelintjest,因此,你也不用担忧样式检查和测试了 :)

下边儿说一下 styled-components 的一些用法和特性。 官方文档在这儿: https://www.styled-components...

1、动态样式赋值

你能够传props给组件,让组件根据所传的props的值动态改变样式。

const Button = styled.button`
  /* 根据props的值动态改变样式的值 */
  background: ${props => props.primary ? 'palevioletred' : 'white'};
  color: ${props => props.primary ? 'white' : 'palevioletred'};
`;

render(
  <div>
    <Button>Normal</Button>
    <Button primary>Primary</Button>
  </div>
);

2、样式继承

const Button = styled.button`
  color: palevioletred;
  font-size: 1em;
  margin: 1em;
  padding: 0.25em 1em;
  border: 2px solid palevioletred;
  border-radius: 3px;
`;
// 建立一个新Button组件,继承自Button,并对Button进行样式添加和覆盖
const TomatoButton = styled(Button)`
  color: tomato;
  border-color: tomato;
`;

render(
  <div>
    <Button>Normal Button</Button>
    <TomatoButton>Tomato Button</TomatoButton>
  </div>
);

3、组件标签替换

好比,你建立了一个Button组件,你想把button标签变成a标签,可是样式仍是button的样式。那么你能够经过 withComponent 方法轻松作到。

const Button = styled.button`
  display: inline-block;
  color: palevioletred;
  font-size: 1em;
  margin: 1em;
  padding: 0.25em 1em;
  border: 2px solid palevioletred;
  border-radius: 3px;
`;

// 把<button>标签替换成<a>标签
const Link = Button.withComponent('a')

// 继承Link组件
const TomatoLink = styled(Link)`
  color: tomato;
  border-color: tomato;
`;

render(
  <div>
    <Button>Normal Button</Button>
    <Link>Normal Link</Link>
    <TomatoLink>Tomato Link</TomatoLink>
  </div>
);

4、动画

// 这个keyframe会随机生成一个name
const rotate360 = keyframes`
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
`;

const Rotate = styled.div`
  display: inline-block;
  animation: ${rotate360} 2s linear infinite;
  padding: 2rem 1rem;
  font-size: 1.2rem;
`;

render(
  <Rotate>&lt; 💅 &gt;</Rotate>
);

5、Media Query

const Content = styled.div`
  background: papayawhip;
  height: 3em;
  width: 3em;

  @media (max-width: 700px) {
    background: palevioletred;
  }
`;

render(
  <Content />
);

6、嵌套写法

styled-components支持嵌套写法,这个特性是从 Sass 移植过来的。

const EqualDivider = styled.div`
  display: flex;
  margin: 0.5rem;
  padding: 1rem;
  background: papayawhip;
  ${props => props.vertical && 'flex-direction: column;'}

  > * {
    flex: 1;

    &:not(:first-child) {
      ${props => props.vertical ? 'margin-top' : 'margin-left'}: 1rem;
    }
  }
`;

const Child = styled.div`
  padding: 0.25rem 0.5rem;
  background: palevioletred;
`;

render(
  <div>
  <EqualDivider>
    <Child>First</Child>
    <Child>Second</Child>
    <Child>Third</Child>
  </EqualDivider>
  <EqualDivider vertical>
    <Child>First</Child>
    <Child>Second</Child>
    <Child>Third</Child>
  </EqualDivider>
  </div>
);

7、配合其余css类库使用

好比你在项目中引入了 bootstrap.css,应该怎么和bootstrap中的类配合使用呢?

const Button = styled.button.attrs({
  // 生成的classList中会包含small
  className: 'small'
})`
  background: black;
`;

render(
  <div>
    <Button>Styled Components</Button>
    <Button>The new way to style components!</Button>
  </div>
);

8、优先级

怎么样覆盖高优先级的样式呢?固然咱们能够经过 !important来作,不过 styled-components 更推荐下边这种作法:

const MyStyledComponent = styled(AlreadyStyledComponent)`
  &&& {
    color: palevioletred;
    font-weight: bold;
  }
`;

每一个 & 替换为生成的类,那么生成的CSS是这样的:

.MyStyledComponent-asdf123.MyStyledComponent-asdf123.MyStyledComponent-asdf123 {
  color: palevioletred;
  font-weight: bold;
}

那么怎么覆盖内联样式呢?以下:

const MyStyledComponent = styled(InlineStyledComponent)`
  &[style] {
    font-size: 12px !important;
    color: blue !important;
  }
`;

styled-components 颠覆了传统的样式写法,像写组件同样写css,配合 react 恰到好处 :)

至于在 Lesscss-modulesstyled-components 中到底选择哪个,就要看你的应用场景和需求了。

本章完

个人Github: https://github.com/PengJiyuan
相关文章
相关标签/搜索