首页 > 解决方案 > 构建后反应项目内部的 TweenLite 无法正常工作

问题描述

我的生产版本出现问题,其中 GSAP TweenLite 插件无法正常工作并引发错误Uncaught TypeError: Failed to execute 'scrollTo' on 'Window': parameter 1 ('options') is not an object.。我的本地开发服务器似乎工作正常。

当地的: console.log(com.greensock.plugins.ScrollToPlugin.version); -> //1.9.2

生产 console.log(com.greensock.plugins.ScrollToPlugin.version); -> //Uncaught TypeError: Cannot read property 'version' of undefined at <anonymous>:1:50

开发依赖 "gsap": "^2.1.3",

零件:

import { TweenLite } from "gsap/all";
..

const handleOnClick = id => {
    let headerHeight = 90; // height of the sticky nav
    let paddingTop = 20; // add some padding.
    TweenLite.to(window, 0.5, { scrollTo: { y: `#${id}`, offsetY: headerHeight + paddingTop } });
};

//Map function
...
<li key={item.id} onClick={() => handleOnClick(item.id)}>
    <span className="text">{item.text}</span>
    ...
</li>
...

标签: jqueryreactjsgsap

解决方案


Greensock 论坛回答:https ://greensock.com/forums/topic/23806-tweenlite-inside-of-react-project-not-working-after-build/?do=findComment&comment=112883

import { TweenLite, ScrollToPlugin } from "gsap/all";
const plugins = [ScrollToPlugin];

推荐阅读