Jump to content
Search Community

Can't use data property to Trigger gsap F.L.I.P change

Charles Lavalard
Moderator Tag

Go to solution Solved by OSUblake,

Recommended Posts

Charles Lavalard
Posted

I'm playing around with the GreenSock F.L.I.P plugin and Vue.Js and i stumble on an issue

 

I tried changing the layout with a data property in VueJs instead of a class toggle

 

But I don't know if it could works and why what I have done doesn't

Could someone explain why is it so ?

See the Pen MWpxEXm by FreeStab (@FreeStab) on CodePen.

  • Solution
Posted

Hi Charles!

 

Changes in frameworks are done asynchronously so updates can get batched together. So you need to wait for the DOM to render those changes.

https://vuejsdevelopers.com/2019/01/22/vue-what-is-next-tick/

 

this.flexClass = !this.flexClass;

this.$nextTick(() => {
  Flip.from(state, {
    absolute: true,
    duration: 0.5,
    stagger: 0.05,
    ease: "power1.inOut"
  });        
});

 

  • Like 2
Charles Lavalard
Posted

Awesome ! Thank you so much ?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...