javascript – Next.js(React)和ScrollMagic
作者:互联网
我想实现一个动画,将像this example这样的部分淡入我的应用程序.因此我看了一下fullPage.js.
但是,由于我需要将它集成到具有服务器端渲染的Next.js React应用程序中,所以我无法使用它,因为它在jQuery上进行中继,它不支持SSR.因此,我试过了ScrollMagic的运气,它没有在jQuery上转发.但它也不支持SSR(需求窗口),因此我在componentDidMount()方法中初始化它,甚至在那里加载它(就像它推荐的here).
它目前最初工作,但是一旦你更改页面并完成一个AJAX请求并且Next.js替换了页面,就会抛出一个错误(见下文):
Node was not found
我试图在componentWillUnmount()中的AJAX请求之前销毁ScrollMagic,但没有运气.我无法弄清楚什么是错的,不幸的是,我找不到任何关于使用React或Next.js的ScrollMagic的文档.
这是我的整个组成部分:
import React from 'react';
import PropTypes from 'prop-types';
class VerticalSlider extends React.Component {
constructor(props) {
super(props);
this.ScrollMagic = null;
this.controller = null;
this.scenes = [];
this.container = React.createRef();
}
componentDidMount() {
if (this.container.current) {
// Why "require" here?
// https://github.com/zeit/next.js/issues/219#issuecomment-393939863
// We can't render the component server-side, but we will still render
// the HTML
// eslint-disable-next-line global-require
this.ScrollMagic = require('scrollmagic');
this.initScroller();
}
}
componentWillUnmount() {
this.scenes.forEach(scene => {
scene.destroy();
});
this.controller.destroy();
this.scenes = [];
this.controller = null;
}
initScroller() {
try {
this.controller = new this.ScrollMagic.Controller();
if (this.container.current !== null && this.container.current.children) {
[...this.container.current.children].forEach(children => {
const scene = new this.ScrollMagic.Scene({
triggerElement: children,
duration: window.innerHeight * 1.5,
triggerHook: 0,
reverse: true
});
scene.setPin(children);
this.scenes.push(scene);
});
this.controller.addScene(this.scenes);
}
} catch (e) {
console.log(e);
}
}
render() {
return (
<div ref={this.container}>
{this.props.sections}
</div>
);
}
}
VerticalSlider.propTypes = {
sections: PropTypes.arrayOf(PropTypes.node).isRequired
};
export default VerticalSlider;
解决方法:
对于SO来说这可能不是一个好的答案,但我想也许这会有所帮助.
React有一个非常好且维护良好的转换库,名为react-transition-group
,Next.js有一个类似的库叫做next-page-transitions
.有一个很好的example显示了如何使用它.示例使用_app.js轻松设置每个页面转换的动画.我建议你看看那个例子并尝试将它集成到你的应用程序中.
标签:scrollmagic,javascript,reactjs,animation,next-js 来源: https://codeday.me/bug/20190910/1798711.html