如何在REACT项目中使用Scrollmagic和GSAP
How to use Scrollmagic and GSAP in REACT project
我正在使用此 codesandbox 作为我的 React 项目的指南并收到此错误:
./node_modules/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js
Module not found: Can't resolve 'TimelineMax'
假设我将沙盒中的所有内容都复制到了我的本地文件,为什么会出现该错误?
顺便说一句,我正在使用 Create-react-app。
animation.gsap.js 需要 TimelineMax 模块,因此请尝试导入 'TimelineMax' 模块
import { TimelineMax} from 'gsap/src/uncompressed/TweenMax.js';
也可以参考github solution
我正在使用此 codesandbox 作为我的 React 项目的指南并收到此错误:
./node_modules/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js Module not found: Can't resolve 'TimelineMax'
假设我将沙盒中的所有内容都复制到了我的本地文件,为什么会出现该错误?
顺便说一句,我正在使用 Create-react-app。
animation.gsap.js 需要 TimelineMax 模块,因此请尝试导入 'TimelineMax' 模块
import { TimelineMax} from 'gsap/src/uncompressed/TweenMax.js';
也可以参考github solution