magr0s / vue-scrollmagic

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

setClassToggle #18

Open maxfrischknecht opened 3 years ago

maxfrischknecht commented 3 years ago

Hi there!

Is it possible to use the setClassToggle method from ScrollMagic with this plugin? I didn't manage to implement it so far.

Regular ScrollMagic Example

new ScrollMagic.Scene({triggerElement: "#nav-content-1"})
  .setClassToggle("#nav-bottom-1", "display-none")
  .addTo(myController);

Vuejs ScrollMagic

const scene1 = this.$scrollmagic.scene({
  triggerElement: '#nav-concent-1',
}).setClassToggle('#nav-bottom-1', 'display-none');

this.$scrollmagic.addScene(scene1)

Thank you for any advice!

Cheers Max

Edit

It actually works, It was my mistake. Please excuse any circumstances and feel free to delete this issue. Thx!