Is there any way to pass a variable from ReactJS to a CSS stylesheet?(有没有办法将变量从ReactJS传递到CSS样式表?)
本文介绍了有没有办法将变量从ReactJS传递到CSS样式表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在编写一个组件数量可变的滚动滚动条,因此我需要它来更改translate3d
根据组件数量移动它的距离。我能想到的唯一方法就是以某种方式向它传递JSX
文件中的一个数字,但我找不到这样做的方法。有没有什么方法可以传递CSS
变量,或者其他某种方式来完成我想要的操作?
推荐答案
有几个« CSS in JS »库允许您向组件动画中添加keyframes
。在JavaScript中编写样式时,可以直接使用组件属性/状态或某些其他常量来创建组件样式。
以下3个库都支持关键帧(我个人一直在使用第一个):
样式组件(GitHub)
import styled, { keyframes } from 'styled-components';
const rotate360 = keyframes`
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
`;
const Rotate = styled.div`
display: inline-block;
animation: ${rotate360} 2s linear infinite;
`;
魅力(GitHub)
import { css } from 'glamor'
let bounce = css.keyframes('bounce', {
'0%': { transform: 'scale(0.1)', opacity: 0 },
'60%': { transform: 'scale(1.2)', opacity: 1 },
'100%': { transform: 'scale(1)' }
})
<div {...css({
animation: `${bounce} 2s`,
width: 50, height: 50,
backgroundColor: 'red'
})}>
bounce!
</div>
Aphrodite(GitHub)
const translateKeyframes = {
'0%': { transform: 'translateX(0)' },
'50%': { transform: 'translateX(100px)' },
'100%': { transform: 'translateX(0)' },
};
const opacityKeyframes = {
'from': { opacity: 0 },
'to': { opacity: 1 }
};
const styles = StyleSheet.create({
zippyHeader: {
animationName: [translateKeyframes, opacityKeyframes],
animationDuration: '3s, 1200ms',
animationIterationCount: 'infinite',
},
});
<div className={css(styles.zippyHeader)}>...</div>
了解有关«JS中的CSS»模式的详细信息
- React: CSS in JS (presentation by Christopher Chedeau, Facebook)(2014年11月8日)
- Writing your styles in JS ≠ writing inline styles(2016年11月25日)
希望能有所帮助!:)
这篇关于有没有办法将变量从ReactJS传递到CSS样式表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:有没有办法将变量从ReactJS传递到CSS样式表?
基础教程推荐
猜你喜欢
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 响应更改 div 大小保持纵横比 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01