0
votes
0answers
405 views

Page transitions using Phonegap, Zepto and Backbone

I'm developing a mobile app using Zepto,Backbone and Phonegap. I have beeen struggling to achieve page transitions. I've tried this library ...
3
votes
1answer
232 views

Zepto JS is making the scrolling in my phonegap app unresponsive

Anyone else had this before? Scrolling works... but if you scroll too quickly the page just stays still. You need to do it kind of slowly. I know it's zepto, too, as if I make a new page with just ...
0
votes
2answers
497 views

Phonegap / Cordova JS Framework and design

I want to make my first Phonegap App. It will be one container, that at the end will call an API and display results. Nothing complex. But because I have read about the problems, what phonegap has ...
3
votes
1answer
1k views

jquery mobile alternatives (and what is the bottleneck ?)

I'm just in the process of releasing my first app in JQM. Basically, geo dynamic pages with listviews. Nothing fancy in terms of design. So I really enjoy the basic look & feel of JQM. I've not ...
1
vote
1answer
238 views

First ajax call on Phonegap + Zepto returns undefined even after device ready

I'm doing a jsonp call in my mobile app at startup to connect to my server. I'm using Phonegap 2.1 and Zepto 1.0-rc1. At the bottom of my html page, I do the init stuff on DOM ready. <script ...
0
votes
0answers
346 views

Using tap event with zepto

i am trying to fix an annoying bug. im using Phonegap and Zepto js library. When im firing tap event and im using: $("button").tap(function() { alert("Works fine!"); }); this works ok. but ...
0
votes
0answers
309 views

javascript slider on iphone and ipad

http://jsfiddle.net/rajkumart08/U9CZA/embedded/result/ When I see this link in iphone device the slider is not working but it works in chrome in firefox the slider movement is not proper I am ...
0
votes
0answers
144 views

javascript ipad scrollable

I integrated flickable code with my code... http://labs.kojo.com.au/demos/flickable/demo2.html but i am not able to make the menu to be scrollable in the popup after clicking this link Find ATM ...
0
votes
1answer
594 views

How to slide up / slide down an element with Zepto on mobile devices?

A common mobile UI pattern is slide up / slide down, for example sliding up an action sheet, then sliding it back down below the screen when it's not in view. I've tried various css 3 transitions and ...
2
votes
1answer
830 views

Android does not respond to soft back keys in Phonegap build

Simply put, I have an onscreen back key in my phonegap application. It works for every device except android, and I would assume this is because the back button isnt even needed on android because of ...
2
votes
1answer
280 views

JQTouch error with phonegap

I'm trying to get jqtouch zepto to work with phonegap. I'm using android to test. I have the project set up and both js frameworks loading but I get this error when setting up jqtouch TypeError: ...
3
votes
1answer
424 views

How can you stop screen rotation on a Playbook using PhoneGap?

I've found solutions to this for iOS and Android, but I can't find one for the Playbook. Is there a way to use PhoneGap or Zepto to lock the screen into portrait orientation on Playbook, and if so, ...
0
votes
1answer
172 views

Are there problems with CSS drawing and Zepto / Phonegap?

I'm trying to draw a circle with CSS, and it's not rendering. Here's my code: <div id="circle" height="65" width="65" position="absolute"></div> and in the CSS file: #circle { ...
1
vote
1answer
345 views

Images staying behind in Xcode or Phonegap? [closed]

So, I am having a really strange error in my app right now. I'm using Zepto and Phonegap. I have a target that moves around the screen, and used to load it from an image. Now, I'm using css to draw ...
0
votes
1answer
273 views

How can you stop the screen scrolling from the top of a Phonegap app?

I'm currently using Phonegap to develop. It works fine, except there's a small (~1 pixel) bar along the top, touching which will cause the entire application to scroll, which I don't want. Here's what ...
3
votes
1answer
535 views

How can you stop a Zepto animation?

I am working with Zepto and Phonegap to create a target that moves over the page. When it's touched, I want the animation to end. I can't find any command that stops the animation. Changing opacity to ...
0
votes
1answer
79 views

How can you stop the Playbook from only displaying a square instead of an image?

I'm currently having a of problem with my Phonegap application on Playbook. It consists of a button and a circle that moves across the screen. The circle is re with a black border, but the playbook ...
1
vote
1answer
669 views

zepto.js vs xuijs for PhoneGap

I'm developing with PhoneGap for a month already. In my first app, I used JQuery and the results were horrible. I learned about zepto.js and xuijs being two of the most recommended libraries for ...
0
votes
1answer
544 views

Zepto load content into a div, animation and back

I discovered zepto frameworks, i read all the example available but i not sure to uderstand how to do this: i need to load a content into a div, after load it move with an animation to this div for ...
0
votes
3answers
296 views

zepto app structure - phonegap

I want to create an app with phonegap and zepto chosen because light. The will be large and for easly development and future mantainance will be divided in several different pages. I do not ...