gpt4 book ai didi

javascript - 边框图像圆锥渐变示例在 React 中不起作用

转载 作者:行者123 更新时间:2023-12-05 00:37:50 25 4
gpt4 key购买 nike

我正在努力重做 Codepen在 react typescript 中。我在博文中找到了 here
简单的方法 - 创建 React App 并将其添加到 css 文件中,效果很好。
不,我尝试了使用样式组件的方式,但似乎我遗漏了一些东西,因为它还不起作用?
应用程序.tsx

import React from "react";
import "./App.css";
import styled from "styled-components";

/* Animate when Houdini is available */
const Houdini = styled.div`
width: 400px;
height: 300px;
border-radius: 10px;
padding: 2rem;
margin: auto;

display: grid;
place-content: center;
text-align: center;

font-size: 1.5em;

--border-size: 0.3rem;
border: var(--border-size) solid transparent;

/* Paint an image in the border */
border-image: conic-gradient(
from var(--angle),
#d53e33 0deg 90deg,
#fbb300 90deg 180deg,
#377af5 180deg 270deg,
#399953 270deg 360deg
)
1 stretch;
background: rgb(255 255 255 / var(--opacity));

@supports (background: paint(houdini)) {
@property --opacity {
syntax: "<number>";
initial-value: 0.5;
inherits: false;
}

@property --angle {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}

@keyframes opacityChange {
to {
--opacity: 1;
}
}

@keyframes rotate {
to {
--angle: 360deg;
}
}

.rainbow {
animation: rotate 4s linear infinite, opacityChange 3s infinite alternate;
}

/* Hide the warning */
.warning {
display: none;
}
}
`;

function App() {
return (
<>
<Houdini>
<p>
This demo uses a real border with <code>border-image</code>, a
background, and finally Houdini to animate.
</p>
</Houdini>

<div>
<p>
⚠️ Your browser does not support{" "}
<a href="https://web.dev/css-individual-transform-properties/">
@property
</a>{" "}
so the animation won’t work
<br />
Please use Chrome.
</p>
</div>
</>
);
}

export default App;

工作方式略有变化 Codepen
我的 的变化应用程序.tsx 其余的和上面的一样——同样的问题,我使用了样式化的组件,效果没有显示出来。
const Houdini = styled.div`
.
.
.
--border-size: 0.3rem;
border: var(--border-size) dotted transparent;
background-image: linear-gradient(
to right,
rgb(255 255 255 / var(--opacity)),
rgb(255 255 255 / var(--opacity))
),
conic-gradient(
from var(--angle),
#d53e33 0deg 90deg,
#fbb300 90deg 180deg,
#377af5 180deg 270deg,
#399953 270deg 360deg
);
background-origin: border-box;
background-clip: padding-box, border-box;
.
.
.

`;

最佳答案

罪魁祸首是启动动画的嵌套 CSS 规则:

.rainbow {
animation: rotate 4s linear infinite, opacityChange 3s infinite alternate;
}
...在 CodePen 示例中,它以带边框的元素为目标:
<div class="rainbow">
<p>This demo uses a real border with <code>border-image</code>,
a background, and finally Houdini to animate.</p>
</div>
但是一旦转换为样式组件, <div>带有“rainbow”类名的替换为 <Houdini>样式化的 React 组件。因此它的类名不再是“rainbow”,而是由 styled-components 生成的。
<Houdini> // styled-components replaces it by something like "<div class="sc-bczRLJ kCseJt">"
<p>
This demo uses a real border with <code>border-image</code>, a
background, and finally Houdini to animate.
</p>
</Houdini>
为了达到相同的效果(即准备一个嵌套规则来启动动画,应用于相同的类名),我们可以简单地使用 & (和号)标识符,样式组件替换为生成的类名(SASS/SCSS 技术):
https://styled-components.com/docs/basics#pseudoelements-pseudoselectors-and-nesting

& a single ampersand refers to all instances of the component; it is used for applying broad overrides


& /*.rainbow*/ {
animation: rotate 4s linear infinite, opacityChange 3s infinite alternate;
}
...现在动画作品了!
注意:不要忘记定义你的初始 CSS 变量(例如在全局 CSS 文件中):
:root {
--angle: 45deg;
--opacity: 0.5;
}

*,
*::before,
*::after {
box-sizing: border-box;
}
CodeSandbox 演示: https://codesandbox.io/s/winter-dream-ej7yec?file=/src/App.tsx:1069-1176

关于javascript - 边框图像圆锥渐变示例在 React 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73282030/

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