Hello !
I created some animations on a website, but I want thoses animations to play only on large screen and I don’t want it to work on the phone.
Is that possible ? And how ?
Thanks in advance for your answers !
Hello !
I created some animations on a website, but I want thoses animations to play only on large screen and I don’t want it to work on the phone.
Is that possible ? And how ?
Thanks in advance for your answers !
Interactions are made for all viewports so you don"t have the choice here. There’s one exception: onScroll intractions won’t play on mobile because they’re deactivated for all mobiles.
So the unique solution is a workaround: have two sets of the same elements, one with interaction, set to appear only on desktop, one for mobile with no interction, set to appear only on devices.
Alright that’s what I’ll do !
Thank you