作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Relax.js 与 React 一起使用,但无法理解如何使用它。我只能找到https://www.npmjs.com/package/rellax#target-node .在那个链接中,他们给出了这个代码。
<div ref={ref => { this.rellaxRef = ref }}>
I’m that default chill speed of "-2"
</div>
var rellax = new Rellax(this.rellaxRef)
最佳答案
你可以像这样使用它带 Hook :
import React, { useRef, useEffect } from "react";
import Rellax from "rellax";
export default function App() {
const rellaxRef = useRef();
useEffect(() => {
new Rellax(".animate", { // <---- Via class name
speed: -10,
center: false,
wrapper: null,
round: true,
vertical: true,
horizontal: false
});
new Rellax(rellaxRef.current, { // <---- Via useRef element
speed: -10,
center: false,
wrapper: null,
round: true,
vertical: true,
horizontal: false
});
}, []);
return (
<div className="App">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
<div ref={rellaxRef}>
Lorem Ipsum is simply dummy text of the printing and typesetting
</div>
<div className="animate">I’m that default chill speed of "-2"</div>
</div>
);
}
关于reactjs - 如何在 React 中使用 Relax.js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61884571/
我是一名优秀的程序员,十分优秀!