Angular 2/4 - 如何使用Gsap安装ScrollMagic?

时间:2017-07-17 10:07:23

标签: angular gsap scrollmagic

我有一个简单的问题:

如何在angular-cli应用程序中正确使用ScrollMagic和Gsap?

我做了什么:

npm install ScrollMagic

npm install gsap

在angular-cli.json中:

"scripts": [
  "../node_modules/gsap/src/uncompressed/tweenmax.js",
  "../node_modules/scrollmagic/scrollmagic/uncompressed/ScrollMagic.js",
  "../node_modules/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js",
  "../node_modules/scrollmagic/scrollmagic/uncompressed/plugins/debug.addindicators.js"
],

在我的组件中:

import {TweenLite, Power2, TimelineMax, TweenMax} from "gsap";
import * as ScrollMagic from 'ScrollMagic';
import * as $ from 'jquery';
import 'scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap';
import "scrollMagic/scrollmagic/minified/plugins/debug.addIndicators.min.js";

但这不起作用。我收到了错误。

有人已经在他的角度2应用程序上安装了该插件吗?

感谢。

1 个答案:

答案 0 :(得分:2)

我通过在我的组件顶部包含以下代码来管理它:

declare let ScrollMagic: any;
declare let TweenMax: any;

这让我们的TypeScript知道您正在使用全局变量。添加此代码后,您可以从组件中删除相关导入。确保将你的脚本保存在angular-cli.json中,你就在那里了!如果您需要引用任何其他全局变量,则可以使用相同的方法执行此操作。