iPhone Full Screen Image - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T08:43:31Zhttp://stackoverflow.com/feeds/question/121051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121051/iphone-full-screen-image5iPhone Full Screen ImageSmallinov2008-09-23T13:38:26Z2009-02-08T22:21:57Z
<p>How do I go about making an image or section of the page full screen on the iPhone?</p>
<p>I have an image that is 480 x 320 and I want to pull that up full screen on the iPhone but it has to be within a webpage so that I can make the image a link back to the previous page.</p>
<p>Currently if I drop the image on a blank page and I open it up on the iPhone it just shows up in the top left corner.</p>
http://stackoverflow.com/questions/121051/iphone-full-screen-image/121071#1210715Answer by andyjeffries for iPhone Full Screen Imageandyjeffries2008-09-23T13:42:02Z2008-09-23T13:42:02Z<p>I'd say set the viewport meta tag in your blank page so Safari knows to render the page at the right size. For more information, see this link:</p>
<p><a href="http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariWebContent/UsingtheViewport/chapter_4_section_5.html" rel="nofollow">Apple iPhone Safari Documentation</a></p>
http://stackoverflow.com/questions/121051/iphone-full-screen-image/121097#12109710Answer by Hans Sjunnesson for iPhone Full Screen ImageHans Sjunnesson2008-09-23T13:45:00Z2008-09-23T13:45:00Z<p>Hopefully I'm not in breach of the NDA here, but here goes.</p>
<p>Mobile Safari, by default, renders a page as if that page had been viewed by a desktop browser, with a default width of 980 pixels.</p>
<p>To change this behavior you need to explicitly declare the viewport, which you do via meta tags. If you declare the width to the constant <em>device-width</em>, it'll default to 320 instead of 980, and everything looks great.</p>
<pre><code><head>
<meta name="viewport" content="width=device-width,user-scalable=no" />
</head>
</code></pre>
http://stackoverflow.com/questions/121051/iphone-full-screen-image/526523#5265231Answer by mtimtner for iPhone Full Screen Imagemtimtner2009-02-08T22:21:57Z2009-02-08T22:21:57Z<p>nice links which may help you further:</p>
<p>How to optimize your website for mobile devices:
<a href="http://solutions.treypiepmeier.com/2008/12/01/optimizing-a-website-for-iphone/" rel="nofollow">http://solutions.treypiepmeier.com/2008/12/01/optimizing-a-website-for-iphone/</a></p>
<p>iPhone Web App Example Code
<a href="http://dotnetperls.com/Content/iPhone-Web-App.aspx" rel="nofollow">http://dotnetperls.com/Content/iPhone-Web-App.aspx</a></p>