Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on application in Phonegap (essentially mobile browser wrapped around HTML5 page), that need their initial width to be equal viewport width when started, but allow user for rescale. So far I've tried:

<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=3.0, user-scalable=yes" />
(...)
<img src="foo.jpg" style="width:100%" />

Didn't work, on Android 2.2 and 2.3 - it scaled img while user scaled viewport via gesture

And:

<meta name="viewport" content="width=480, initial-scale=1.0, minimum-scale=1.0, maximum-scale=3.0, user-scalable=yes" />
(...)
<img src="foo.jpg" style="width:480px" />

This also didn't work on Android - it produced img of about 4/3 of viewport size on start (so user was able to scroll right).

I am probably missing something obvious, but searching Google so far didn't gave results I want

EDIT: It seems to be bug in PhoneGap, second code is working outside PhoneGap

share|improve this question
Hm, this seems to be bug in Phonegap (community.phonegap.com/nitobi/topics/…) – PiotrK Nov 14 '12 at 22:17
I blogged about something similar, can you use this kind of solution? bravenewmethod.wordpress.com/2011/08/28/… – Teemu Ikonen Nov 15 '12 at 0:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.