android - Cordova good performance transitions -


i making cordova app. in apps can switch between different pages. maked jquery animation new page comes left right:

$('#seite_2').css('left', '-100%');     $('#seite_2').animate({left: '0%'}, 150); 

i having galaxy s6 , animation laggy. animation should use have (without lag) animation. dont have come left right. can different type of animation, looks better direct page swap. other css animation or plugin cool ;)

might overkill mobile app, in general velocity.js delivers high performance animations. on website can read why jquery , css animations slower:

secret sauce

javascript , jquery falsely conflated. javascript animation, velocity uses, fast; it's jquery that's slow. although velocity works alongside jquery, uses own animation stack delivers performance through 2 underlying principles: 1) synchronize dom → tween stack minimize layout thrashing, , 2) cache values minimize dom querying.

update: if prefer css3 animations, there few rules follow achieve 60fps performance: https://medium.com/outsystems-experts/how-to-achieve-60-fps-animations-with-css3-db7b98610108


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -