2013-04-24 68 views

回答

-1

您需要將一些CSS應用於所述圖像以使它們變得響應,如果圖像是從imgsrc或mysql數據庫加載的都沒關係。

試試這個CSS:

img { 
    max-width: 1000px; //upper-bound 
    min-width: 320px; //lower-bound 
    width: 100%; //set the image to be the width of whatever the screen width is now 
} 
+0

參見[此線索](http://stackoverflow.com/questions/15179999/responsive-design-support-of-phone-gap)覆蓋的最佳途徑在PhoneGap中處理響應式設計 - 您可以使用內置方法來調用設備字符串,但是__最有效的方法是使用媒體查詢和最大和最小寬度。 – MikeZ 2013-04-25 16:35:57