默認情況下,jQuery Mobile填充整個屏幕寬度。有沒有辦法指定jQuery Mobile應該填充的大小,比如提供一個元素來填充?爲jQuery Mobile設置大小?
4
A
回答
0
你可以簡單的通過CSS指定此...
例如:
CSS
#wrapper {width:95%}
HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
</head>
<body>
<div id="wrapper">
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</div>
</body>
</html>
您還可以通過這樣做動態:
$("div[data-role='page']").css('width',$("#container_element").innerWidth()+"px");
0
尺寸是自動的。如果在頁面div之外創建div
並將其設置爲浮點型和寬度(以像素爲單位),則它應該在頁面div旁邊正確顯示。
3
只需在CSS文件中設置此行。讓它變得非常簡單。如果喜歡,則將最大寬度更改爲寬度。
.ui-page { max-width:500px; }
相關問題
- 1. jquery mobile將我的屏幕大小設置爲100%
- 2. 將設置大小設置爲TreeSet
- 3. JQuery Mobile DateTime設置爲當前
- 4. 用jquery mobile爲iOS設置phonegap
- 5. 設置爲CharSequence大小
- 6. 爲rmiregistry設置堆大小
- 7. 設置大小
- 8. jQuery UI Draggable設置拖動大小
- 9. 在jquery中設置字體大小
- 10. 設置最小/最大日期jquery Datepicker
- 11. Jquery Mobile彈出屏幕大小
- 12. Jquery Mobile中的按鈕自動大小
- 13. jQuery Mobile的默認字體大小
- 14. Leaflet&jQuery Mobile - 調整大小問題
- 15. Jquery Mobile + Phonegap的字體大小不同
- 16. jQuery Mobile textarea調整大小問題
- 17. Jquery Mobile 1.3和輸入大小問題?
- 18. jquery mobile中的簡單窗口大小
- 19. JQuery Mobile中的Navbar按鈕大小
- 20. 設置大小UIImageView
- 21. 設置SharedObject最大大小
- 22. 設置WebView大小
- 23. jQuery UI可調整大小:以編程方式設置大小?
- 24. 在jQuery中設置JQuery Mobile滑塊值
- 25. 將小部件大小設置爲其他大小的一半
- 26. 設置旋轉箱位置JQuery Mobile(css)
- 27. 設置UIImageView大小?
- 28. UIScrollView設置大小
- 29. 設置大小android.R.layout.simple_dropdown_item_1line
- 30. 如何使用jquery將背景大小設置爲100%?
自'data-role =「頁面指定'#wrapper'的寬度不起作用''div有'position:absolute'。你提供的jQuery片段確實會改變寬度,但它保留在頁面的左上角,而不管它的容器位於何處。 – mindeavor 2011-03-06 20:03:57
更不用說那是圍繞着jQuery Mobile提供的框架。當您只需使用已有的包裝或類時,無需添加額外的包裝或類。 – commadelimited 2012-03-14 19:53:47