При попытке создать анимацию на сайте Gatsby, я получаю следующую ошибку:
12:57:12:665 (ScrollMagic.Scene) -> ERROR calling setTween() due to missing Plugin 'animation.gsap'. Please make sure to include plugins/animation.gsap.js
Я нашел ресурсы, ссылающиеся на добавление плагина в gatsby-config.js, а также в gatsby-browser..js, но не совсем так, как нужно кодировать этот плагин.
Текущий gatsby.config.js:
module.exports = {
siteMetadata: {
title: 'Gatsby Default Starter',
},
plugins: ['gatsby-plugin-react-helmet', 'gatsby-plugin-emotion'],
}
Текущий gatsby-browser.js:
/* eslint-disable react/prop-types */
import 'babel-polyfill'
import React, { createElement } from 'react'
exports.onClientEntry = () => {
require('gsap')
require('scrollmagic')
require('gsap/src/uncompressed/plugins/ScrollToPlugin')
require('jquery')
}
Как добавить плагин animation.gsap?
Мой компонент анимации:
import React, { Component } from 'react'
import Link from 'gatsby-link'
import styled from 'react-emotion'
import { TweenLite as Tween, TimelineMax as Timeline, TweenMax } from 'gsap'
import { Images } from '../../assets'
import '../../styles/main.css'
import $ from 'jquery'
import ScrollMagic from 'scrollmagic'
const Container = styled.div`
height: 100vh;
margin: auto;
position: absolute;
top: 30%;
z-index: 999;
`
export default class Animation extends React.Component {
constructor(props) {
super(props)
}
componentDidMount() {
const flightpath = {
entry: {
curviness: 1.25,
autoRotate: true,
values: [{ x: 100, y: -20 }, { x: 300, y: 10 }, {}],
},
looping: {
curviness: 1.25,
autoRotate: true,
values: [
{ x: 510, y: 60 },
{ x: 620, y: -60 },
{ x: 500, y: -100 },
{ x: 380, y: 20 },
{ x: 500, y: 60 },
{ x: 580, y: 20 },
{ x: 620, y: 15 },
],
},
leave: {
curviness: 1.25,
autoRotate: true,
values: [
{ x: 660, y: 20 },
{ x: 800, y: 130 },
{ x: $(window).width() + 300, y: -100 },
],
},
}
//init controller
const controller = new ScrollMagic.Controller()
//create tween
const tween = new Timeline()
.add(
TweenMax.to($('#plane'), 1.2, {
css: { bezier: flightpath.entry },
ease: Power1.easeInOut,
})
)
.add(
TweenMax.to($('#plane'), 2, {
css: { bezier: flightpath.looping },
ease: Power1.easeInOut,
})
)
.add(
TweenMax.to($('#plane'), 1, {
css: { bezier: flightpath.leave },
ease: Power1.easeInOut,
})
)
// build scene
const scene = new ScrollMagic.Scene({
triggerElement: '#trigger',
duration: 500,
offset: 100,
})
.setPin('#target')
.setTween(tween)
.addTo(controller)
}
render() {
return (
<Container>
<div className="spacer s2" />
<div className="spacer s0" id="trigger" />
<div id="target">
<img id="plane" src={Images.pou} />
</div>
<div className="spacer s2" />
</Container>
)
}
}