magr0s / vue-scrollmagic

Vue.js plugin
MIT License
72 stars 24 forks source link

on end and on leave not working #19

Open maxfrischknecht opened 3 years ago

maxfrischknecht commented 3 years ago

Hi there!

It seems some of the on events are not properly working.

This works:

const einleitungSection = this.$scrollmagic.scene({
  triggerElement: '#einleitung-section',
})
this.$scrollmagic.addScene(einleitungSection)

einleitungSection.on("start", (event) => {
  console.log('start einleitung-section', event);
})

But the same code doesn't work with end nor leave

const einleitungSection = this.$scrollmagic.scene({
  triggerElement: '#einleitung-section',
})
this.$scrollmagic.addScene(einleitungSection)

einleitungSection.on("end", (event) => {
  console.log('end einleitung-section', event);
})