91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用CSS-in-JS來做的事情有哪些

發布時間:2021-11-06 16:31:57 來源:億速云 閱讀:162 作者:iii 欄目:web開發

本篇內容主要講解“用CSS-in-JS來做的事情有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“用CSS-in-JS來做的事情有哪些”吧!

除了傳統的 CSS,你還可以使用 內聯樣式  CSS-in-JS 作為 React 應用程序的樣式選項。

對于內聯樣式,你可以將 JavaScript對象傳遞給樣式屬性:

const myStyle = {
  fontSize: 24,
  lineHeight: '1.3em',
  fontWeight: 'bold',
};
<span style={myStyle}>Hello World!</p>

然而,并非所有 CSS 特性都受支持。

另一方面,CSS-in-JS 是一種使用 JavaScript來設置組件樣式的技術。在解析此 JavaScript時,會生成 CSS(通常作為 <style> 元素)并附加到 DOM 中。

這個功能由第三方庫實現。例如,下面是使用 Aphrodite 實現的上一個示例:

import { StyleSheet, css } from 'aphrodite';
const styles = StyleSheet.create({
    myStyle: {
        fontSize: 24,
        lineHeight: '1.3em',
        fontWeight: 'bold',
    }
});
<span className={css(styles.myStyle)}>Hello World!</p>

其他第三方庫推薦:

  • Emotion

  • JSS

  • Radium

  • Styled-components

我并不完全贊成使用 CSS-in-JS,但我不得不說,其中一些庫增加了對在某些情況下可能會有用的功能支持。

在這篇文章中,我將討論在 CSS-in-JS 中你可以用上面的庫來做的五件事,而我打賭這是你不知道的。

1.參照其他樣式組件

 styled-components  emotion 庫允許您使用 標記模板文字 從樣式中創建 React 組件:

import styled from 'styled-components';
// Create a component that renders a <p> element with blue text
const BlueText = styled.p`
  color: blue;
`;
<BlueText>My blue text</BlueText>

它們也允許你定位于其他樣式組件(像你使用 CSS 選擇器一樣):

const ImportantText = styled.div`
   font-weight: bold;
`;
const Text = styled.div`
  color: gray;
  ${ImportantText} {
    font-style: italic;
  }
`;
render(
  <div>
    <Text>
      Text in gray
      <ImportantText>Important text in gray, bold and italic</ImportantText>
    </Text>
    <ImportantText>Important text bold</ImportantText>
  </div>
);

用CSS-in-JS來做的事情有哪些

這在組合偽類時很有用,例如,在懸停時更改組件的顏色:

const Text = styled.div`
  color: gray;
  &:hover ${ImportantText} {
    color: red;
  }
`;

用CSS-in-JS來做的事情有哪些

2.使用JSS(或其他庫)擴展某些庫的特性

假設你已經使用 Aphrodite 為你的應用程序設計樣式,現在你需要支持主題。

但問題是 Aphrodite 不能輕易地支持主題。 至少不像 Emotion 那么容易。

不過,這里有兩個項目將 JSS 的核心與 Aphrodite  styled-components 相結合, aphrodite-jss  styled-jss 。

通過這種方式,你可以保留 Aphrodite(或 styled-components) 的優點,并使用 JSS 的所有特性和 插件 ,從 規則緩存  規則隔離 ,以及 主題 ,主題包,以下是它提供的高階組件:

  • ThemeProvider:通過 context 向 react 樹傳遞主題對象。

  • withTheme:允許你接收一個主題對象并作為屬性來更新。

例如:

const blackTheme = {
  color: 'black',
};
const App = () => (
  <ThemeProvider theme={blackTheme}>
    <MyComponent />
  </ThemeProvider>
);

 Aphrodite 和主題的案例中,作為另一個例子,你也可以使用 react-with-styles ,它有實現 Aphrodite  JSS 接口,這樣在定義樣式時就可以訪問主題信息了。

3.使用關鍵幀鏈接多個動畫

與內聯樣式不同,CSS-in-JS 允許你使用關鍵幀定義動畫。 例如,這是使用styled-components 做的:

const heightAnimation = keyframes`
  0% { height: 0; }
  100% { height: 200; }
`;
const myComponent = styled.div`
  display: inline-block;
  width: 200;
  position: relative;
  animation-name: ${heightAnimation};
  animation-duration: 1.5s;
  animation-timing-function: ease;
`;

但是很多人不知道的是,你可以通過在 animation 屬性中使用多個關鍵幀對象來鏈接多個動畫。 下面是修改后的兩個動畫的例子:

const heightAnimation = keyframes`
  0% { height: 0; }
  100% { height: 200; }
`;
const rotateAnimation = keyframes`
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
`;
const myComponent = styled.div`
  display: inline-block;
  width: 200;
  position: relative;
  animation: ${props => css`
    ${heightAnimation} 1.5s ease infinite,
    ${rotateAnimation} 1.5s linear infinite
  `}
`;

Radium 是另一個通過傳遞關鍵幀對象數組作為 animationName 屬性值來支持多個 動畫 的庫:

const heightAnimation = Radium.keyframes(
  {
    0% { height: 0; }
    100% { height: 200; }
  },
  'myHeightAnimation',
);
const rotateAnimation = Radium.keyframes(
  {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  },
  'myRotateAnimation',
);
const styles = {
  myStyle: {
    animationName: [heightAnimation, rotateAnimation],
    animationDuration: '1.5s, 1s',
    animationIterationCount: 'infinite, infinite',
    animationTimingFunction: 'ease, linear',
    display: inline-block;
    width: 200;
    position: relative;
  },
};

4.聲明全局樣式

CSS 中的一切都是全局的,使用 CSS-in-JS 的目的之一是消除全局樣式定義。

但是,全局樣式的使用有時可能是很有效的,例如,當你想對頁面中的每個元素應用相同的字體樣式時。

當然,你總是可以使用傳統的 CSS,通過 Webpack 導入或在 index.html 文件中聲明它。

但是,如果您真的想在所有樣式中使用 JavaScript,那么有些庫實際上允許您通過 helper 組件或擴展/插件來定義全局樣式。

 Radium 中,您可以使用 Style 組件來渲染具有全局樣式的樣式元素。 例如:

<Style
  rules={{
    body: {
      fontFamily: 'Arial, Helvetica, sans-serif'
    }
  }}
/>

將返回:

<style>
body {
  font-family: 'Arial, Helvetica, sans-serif';
}
</style>

JSS 使用一個 插件 來編寫全局樣式:

const styles = {
  '@global': {
    body: {
      fontFamily: 'Arial, Helvetica, sans-serif'
    }
  }
}

 Aphrodite 中,你可以用 第三方擴展 來做:

import {injectGlobalStyles} from "aphrodite-globals";
injectGlobalStyles({
    "body": {
          fontFamily: 'Arial, Helvetica, sans-serif',
    }
});

或者通過 aphrodit-jss 來使用 JSS 全局插件。

5.在單元測試中使用樣式測試組件

有些庫包含用于測試組件樣式的工具。

Aphrodite 提供了一個沒有文檔說明(至少在寫這篇文章的時候是這樣)的對象 StyleSheetTestUtils ,它僅適用于非生產環境(process.env.NODE_ENV!=='production'),有三個方法:

  • suppressStyleInjection:它阻止樣式被注入到DOM中,當你想要在沒有DOM的情況下測試Aphrodite 組件的輸出時非常有用。

  • clearBufferAndResumeStyleInjection:它與 suppressStyleInjection 相反,所以它們應該搭配使用。

  • getBufferedStyles:它返回尚未刷新的緩沖樣式字符串。

以下是如何使用它們的示例:

import { StyleSheetTestUtils, css } from 'aphrodite';
//...
beforeEach(() => {
  StyleSheetTestUtils.suppressStyleInjection();
});
afterEach(() => {
  StyleSheetTestUtils.clearBufferAndResumeStyleInjection();
});
test('my test', () => {
  const sheet = StyleSheet.create({
    background: {
      backgroundColor: 'blue'
    },
  });
  css(sheet.background);
  // buffer will contain something like [ ".background_k554e1{background-color:blue !important;}" ]
  const buffer = StyleSheetTestUtils.getBufferedStyles();
  // ...
});

Radium 是另一個例子。它有一個 TestMode 對象,用于在測試期間使用 clearStateenable  disable 方法控制內部狀態和行為。

到此,相信大家對“用CSS-in-JS來做的事情有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

楚雄市| 德惠市| 达孜县| 彭阳县| 福贡县| 梓潼县| 思茅市| 万山特区| 哈密市| 类乌齐县| 南部县| 福州市| 平泉县| 克拉玛依市| 哈密市| 蓬溪县| 亳州市| 灵寿县| 胶州市| 石屏县| 辛集市| 余江县| 罗平县| 康保县| 彭泽县| 南充市| 织金县| 甘洛县| 新田县| 河源市| 大足县| 江北区| 勐海县| 甘孜县| 桐柏县| 聊城市| 安平县| 临夏市| 襄樊市| 天津市| 双牌县|