Skip to content

Instantly share code, notes, and snippets.

@leochocolat
Created November 4, 2020 18:23
Show Gist options
  • Save leochocolat/74dab2069d0c45aac40963ca9f99c7d9 to your computer and use it in GitHub Desktop.
Save leochocolat/74dab2069d0c45aac40963ca9f99c7d9 to your computer and use it in GitHub Desktop.
<template>
<div class="slide">
slide
</div>
</template>
<script>
export default {
methods: {
transitionIn() {
const timeline = new gsap.timeline();
timeline.to(this.$el, 1, { alpha: 1 });
return timeline;
},
transitionOut() {
const timeline = new gsap.timeline();
timeline.to(this.$el, 1, { alpha: 0 });
return timeline;
},
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment