emotion/css编写动态css

emotion/css编写动态css

安装

pnpm i @emotion/css -S

使用

import {
    css, keyframes } from '@emotion/css';

const ScrollingText = keyframes`
    0% {
    
      transform: translateX(0);
    }

   

你可能感兴趣的:(css,前端)