Nuxt GSAP Module
GSAP module for Nuxt.js
Features
- Helps you integrate
GSAP
javascript animation library - Allows you to easily animate elements via custom
v-gsap
directive🔥 - Provides a solution for global use via
this.$gsap
- Automatically registers plugins after activation
- Supports
Club GreenSock
premium plugins -
Zero-config
setup ready to go🚀
Quick Start
- Add
nuxt-gsap-module
dependency to your project
$ npm install --save-dev nuxt-gsap-module # or yarn add --dev nuxt-gsap-module
- Add
nuxt-gsap-module
to thebuildModules
section ofnuxt.config.js
// nuxt.config.js
export default {
buildModules: ['nuxt-gsap-module'],
gsap: {
/* module options */
}
}
That's it! Start developing your app
Examples
Here are some code examples
v-gsap.set
Custom modifier: <!-- index.vue -->
<template>
<p v-gsap.set="{ x: 100, y: 50 }">NUXT GSAP</p>
</template>
v-gsap.to
Custom modifier: <!-- index.vue -->
<template>
<h1
v-gsap.to="{
rotation: 360,
x: 150,
duration: 2
}"
>
NUXT GSAP
</h1>
</template>
v-gsap.from
Custom modifier: <!-- index.vue -->
<template>
<span
v-gsap.from="{
opacity: 0,
x: -200,
duration: 1
}"
>
NUXT GSAP
</span>
</template>
v-gsap.fromTo
Custom modifier: <!-- index.vue -->
<template>
<p
v-gsap.fromTo="[
{ opacity: 0, y: -350 },
{ opacity: 1, y: 0, duration: 3 }
]"
>
NUXT GSAP
</p>
</template>
Simple box rotation
// index.vue
{
mounted() {
this.boxRotation()
},
methods: {
boxRotation() {
const gsap = this.$gsap
gsap.to('.box', { rotation: 27, x: 100, duration: 1 })
}
}
}
Nuxt global page transitions
// nuxt.config.js
{
// Enable module
buildModules: ['nuxt-gsap-module'],
// Add global page transition
pageTransition: {
name: 'page',
mode: 'out-in',
css: false,
beforeEnter(el) {
this.$gsap.set(el, {
opacity: 0
})
},
enter(el, done) {
this.$gsap.to(el, {
opacity: 1,
duration: 0.5,
ease: 'power2.inOut',
onComplete: done
})
},
leave(el, done) {
this.$gsap.to(el, {
opacity: 0,
duration: 0.5,
ease: 'power2.inOut',
onComplete: done
})
}
}
}
Multiple plugins usage example
// nuxt.config.js
{
gsap: {
extraPlugins: {
/**
* After activation, plugins are automatically
* registered and available globally
*/
scrollTo: true,
scrollTrigger: true
},
extraEases: {
expoScaleEase: true
}
}
}
// Usage
export default {
mounted() {
this.animateOnScroll()
},
methods: {
animateOnScroll() {
this.$gsap.to(window, { duration: 2, scrollTo: 1000 })
this.$gsap.to('.box', {
x: 500,
ease: 'Power1.easeInOut',
scrollTrigger: {
trigger: '.content',
pin: true,
end: 'bottom',
scrub: true
}
})
}
}
}
Options
Default options
// nuxt.config.js
{
gsap: {
extraPlugins: {
cssRule: false,
draggable: false,
easel: false,
motionPath: false,
pixi: false,
text: false,
scrollTo: false,
scrollTrigger: false
},
extraEases: {
expoScaleEase: false,
roughEase: false,
slowMo: false,
}
}
}
GSAP's core
gsap
- Default:
true
// nuxt.config.js
{
buildModules: ['nuxt-gsap-module']
}
Available globally
// Access GSAP by using
this.$gsap
// or
const gsap = this.$gsap
gsap.to('.box', { rotation: 27, x: 100, duration: 1 })
Use in templates
<div v-gsap.to="{ /* ... */ }"></div>
<div v-gsap.from="{ /* ... */ }"></div>
<div v-gsap.fromTo="[{ /* ... */ }, { /* ... */ }]"></div>
<div v-gsap.set="{ /* ... */ }"></div>
Extra Plugins
cssRule
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
cssRule: true
}
}
}
// Access the plugin by using
this.$CSSRulePlugin
draggable
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
draggable: true
}
}
}
// Access the plugin by using
this.$Draggable
easel
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
easel: true
}
}
}
// Access the plugin by using
this.$EaselPlugin
motionPath
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
motionPath: true
}
}
}
// Access the plugin by using
this.$MotionPathPlugin
pixi
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
pixi: true
}
}
}
// Access the plugin by using
this.$PixiPlugin
text
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
text: true
}
}
}
// Access the plugin by using
this.$TextPlugin
scrollTo
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
scrollTo: true
}
}
}
// Access the plugin by using
this.$ScrollToPlugin
scrollTrigger
- Default:
false
// nuxt.config.js
{
gsap: {
extraPlugins: {
scrollTrigger: true
}
}
}
// Access the plugin by using
this.$ScrollTrigger
Extra eases
expoScaleEase
- Default:
false
// nuxt.config.js
{
gsap: {
extraEases: {
expoScaleEase: true
}
}
}
// Access the plugin by using
this.$ExpoScaleEase
roughEase
- Default:
false
// nuxt.config.js
{
gsap: {
extraEases: {
roughEase: true
}
}
}
// Access the plugin by using
this.$RoughEase
slowMo
- Default:
false
// nuxt.config.js
{
gsap: {
extraEases: {
slowMo: true
}
}
}
// Access the plugin by using
this.$SlowMo
Club GreenSock
nuxt-gsap-module
supports Club GreenSock premium plugins. They can be easily activated via module
settings, just like the free ones.
Installation
- Follow the official instructions and install the
premium
plugins as usual. - After installation, simply activate the desired plugins and that's it, you're ready to go!
customEase
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
customEase: true
}
}
}
// Access the plugin by using
this.$CustomEase
customBounce
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
customBounce: true
}
}
}
// Access the plugin by using
this.$CustomBounce
customWiggle
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
customWiggle: true
}
}
}
// Access the plugin by using
this.$CustomWiggle
drawSVG
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
drawSVG: true
}
}
}
// Access the plugin by using
this.$DrawSVGPlugin
flip
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
flip: true
}
}
}
// Access the plugin by using
this.$Flip
gsDevTools
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
gsDevTools: true
}
}
}
// Access the plugin by using
this.$GSDevTools
inertia
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
inertia: true
}
}
}
// Access the plugin by using
this.$InertiaPlugin
morphSVG
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
morphSVG: true
}
}
}
// Access the plugin by using
this.$MorphSVGPlugin
motionPathHelper
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
motionPathHelper: true
}
}
}
// Access the plugin by using
this.$MotionPathHelper
physics2D
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
physics2D: true
}
}
}
// Access the plugin by using
this.$Physics2DPlugin
physicsProps
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
physicsProps: true
}
}
}
// Access the plugin by using
this.$PhysicsPropsPlugin
scrambleText
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
scrambleText: true
}
}
}
// Access the plugin by using
this.$ScrambleTextPlugin
splitText
- Default:
false
// nuxt.config.js
{
gsap: {
clubPlugins: {
splitText: true
}
}
}
// Access the plugin by using
this.$SplitText
License
GSAP
For more information, check the official GSAP site.
Copyright (c) GreenSock
Nuxt GSAP module
Copyright (c) Ivo Dolenc