gpt4 book ai didi

reactjs - 使用 CSS 转换 : translate(. ..) 和 ReactJS

转载 作者:行者123 更新时间:2023-12-03 13:06:19 25 4
gpt4 key购买 nike

根据https://facebook.github.io/react/tips/inline-styles.html

CSS 样式需要作为对象传递给组件。但是,如果您尝试使用变换样式,您将会收到错误。

最佳答案

翻译对我来说也不起作用。我通过在 var 后面添加“px”来修复它。

ES6 代码:

render() {
const x = 100;
const y = 100;
const styles = {
transform: `translate(${x}px, ${y}px)`
};

return (
<div style={styles}></div>
);
}

关于reactjs - 使用 CSS 转换 : translate(. ..) 和 ReactJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32634715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com