You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying typical slide in / slide out pages thing; I have two full absolutely positioned screen containers, one of which is off screen.
panels=container.find('>div.tm-panel');// here i set off screen container$(panels[1]).css({x: SCREEN_WIDTH)});// make it visible$(panels[1]).removeClass('tm-hidden');// do the transitions for both containers// first container X should be transitioned from 0 to -SCREEN_WIDTH,// while second container X should be from -SCREEN_WIDTH to 0$(panels).transition({x: '-='+SCREEN_WIDTH/2,duration: 500,easing: 'snap',complete: function(){
...
}});
Now, only device where this thing is working fine is an Ipad, while on the desktop and android chrome I get really stuttering problematic behaviour, second container is not scrolling at all etc.. Anyone have any idea what is the best way of transitioning two containers at the same time?
The text was updated successfully, but these errors were encountered:
I am trying typical slide in / slide out pages thing; I have two full absolutely positioned screen containers, one of which is off screen.
Now, only device where this thing is working fine is an Ipad, while on the desktop and android chrome I get really stuttering problematic behaviour, second container is not scrolling at all etc.. Anyone have any idea what is the best way of transitioning two containers at the same time?
The text was updated successfully, but these errors were encountered: