您可以使用 Jquery Mobile:
一般的页面布局是
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>My Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Hello world</p>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
如果您需要将桌面页面转换为 jquery 移动版,则需要重写大部分视图页面,因为大多数组件(如图像滚动器/滑块、悬停时显示子菜单)在移动版上可能无法正常工作。
或者您可以使用媒体查询来定义不同像素的 div
@media screen and (max-width: 480px) and (orientation: portrait){
/* some CSS here */
/*define css for all divs*/
}
/* #### Mobile Phones Landscape #### */
@media screen and (max-width: 640px) and (orientation: landscape){
/* some CSS here */
/*define css for all divs*/
}
/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-width: 640px){
/* some CSS here */
/*define css for all divs*/
}