In jquery mobile tutorial they given all scrolling related functionality with examples but if i am using same functionality in phonegap android there scrolling not working please suggest me what shoul i do? I don't want to use iScroll and jQTouch
Thnks
Apurv
Have you tried the experimental jQueryMobile scrollview plugin? (github link)
Related
I have created a few mobile app using phonegap and i have used jquery mobile, purely because the controls are nice looking, but mainly because it has the nice changePage function. I like to have multiple html documents to break up the code, and with over 10 separate screens i think it keeps the code tidier.
Can anyone tell me, how to normally changePage with a nice "slide" animation without using JQuery mobile, using multiple html pages. Is this possible?
I will still be using JQuery, but i would like to use something like chocolateUI or twitter bootstrap for the design of the controls.
Any examples would be much appreicated, i have tried googling this but all the results say "how to change page with JQuery Mobile" and i do not want this.
Thanks in advance
Maybe you could start working with Ionic Framework:
http://ionicframework.com/
It's works with AngularJS, and has the functionality you are looking for. It also works great with jQuery.
I've build a couple of apps with it myself and I'm still really fond of it!
There are other frameworks like:
OnsenUI (http://onsenui.io/)
Kendo UI (http://www.telerik.com/kendo-ui)
Sencha (http://www.sencha.com/products/touch/)
Monaca(http://monaca.mobi/en/)
ReactJS (http://facebook.github.io/react/)
Hope it helps!
I use Zurbs Foundation framework to develop my sites but do not like their built in orbit slider so have opted to use another responsive slider which I really like. The slider works perfectly in every browser I have tested it in apart from IE.
The plugin I use is http://responsiveslides.com/. The plugin works in IE on their site but not mine but I am using the exact same code so cannot understand why it does not work.
Does anyone know why it is working on the site above but not mine, the website I am using this slider on is http://www.viscari.co.uk/client.
If you require any more information from me please let me know.
Thanks in advance for any help given.
You can use html5shiv to make IE support HTML5!
I want to implement a side menu app using html5 and javascript like the google home page on iphone. some one who know a plugin can do this?
thanks
I think this library may help you. It uses jQuery.
http://www.berriart.com/sidr/
http://egorkhmelev.github.com/jslider/
The jQuery slider does not work on Android.
Can someone recommend a web-based slider that works on Android?
JQuery Mobile
http://jquerymobile.com/
I've tried the jQuery Mobile Slider but it feels really slow.
I'm trying "Touch Punch" now, very promising!!
As linked from https://stackoverflow.com/a/9533878/809536
I'm using jQuery on a client's vCard site - http://chrismward.com/beta - to switch between pages.
It all works great on the computer, but when I try on my iPhone: no dice.
I'm using jQuery 4.0 and here is the only js file I'm using on the site (other than jQuery from the Google CDN) - http://chrismward.com/beta/resource/js/main.js
If anyone can help me, I'd greatly appreciate it.
Thanks,
-Giles
Regular JavaScript animations (using setTimeout/setInterval) don't work very well in Mobile Safari; you need to use CSS Animations to get decent results. You might want to try creating an iPhone-optimised version of the site using jQTouch (which uses CSS animations).
They appear to work fine in the iPhone Simulator. Which means, if they are too slow on an iPhone, they are just too slow. Use CSS animations like Steve Harrison suggests. You probably want the -webkit-transition property. Here's an example you can try.