ScrollMagic with React

Dil*_*eet 3 reactjs webpack

我正在尝试让ScrollMagic使用ES2015导入和React.我收到这个错误:

ERROR in ./~/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js
Module not found: Error: Cannot resolve module 'TimelineMax' in /Users/dillonraphael/Desktop/marbleshark_landingpage/node_modules/scrollmagic/scrollmagic/uncompressed/plugins
 @ ./~/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js 31:2-61
Run Code Online (Sandbox Code Playgroud)

这就是我导入所有内容的方式.

import {gsap, TimelineMax, TweenMax} from 'gsap';
import ScrollMagic from 'ScrollMagic';
require('scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap');
Run Code Online (Sandbox Code Playgroud)

Huy*_*yen 6

使用此import语句对我有用:

import * as ScrollMagic from 'scrollmagic'
Run Code Online (Sandbox Code Playgroud)

安装包后用npm install scrollmagic.