performance - How can i make my jQuery Mobile App have smooth scrolling -
i built mobile app using jquery mobile. on mobile devices app doesn't scroll smoothly , affect fix header , footer. can viewed here http://centurymegasystem.com/bb
please how can fix issue.
the real way create smooth scrolling disable transitions
to disable transitions, inside of mobile-site-custom-jqm-defaults.js file, place code:
$(document).bind("mobileinit", function(){ $.extend( $.mobile , { defaultpagetransition: 'none' }); });
Comments
Post a Comment