美文网首页
2016.09.22 Jquery mobile 制作单页面多应

2016.09.22 Jquery mobile 制作单页面多应

作者: Success85 | 来源:发表于2016-09-23 09:52 被阅读545次

简介

jQuery Mobile 是创建移动 web 应用程序的框架。
jQuery Mobile 适用于所有流行的智能手机和平板电脑。
jQuery Mobile 使用 HTML5 和 CSS3 通过尽可能少的脚本对页面进行布局。

官网

http://jquerymobile.com
配合jquery 才能正常使用

一个小实例

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js">        </script>
</head>
<body>

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>欢迎访问我的主页</h1>
  </div>

  <div data-role="content">
    <p>Welcome!</p>
    <a href="#pagetwo">转到页面二</a>
  </div>

  <div data-role="footer">
      <h1>页脚文本</h1>
    </div>
</div> 

<div data-role="page" id="pagetwo">
    <div data-role="header">
    <h1>欢迎访问我的主页</h1>
</div>

<div data-role="content">
    <p>Goodbye!</p>
    <a href="#pageone">转到页面一</a>
</div>

<div data-role="footer">
    <h1>页脚文本</h1>
    </div>
</div> 

</body>
</html>

更多实例及使用方法参考

http://www.w3school.com.cn

思考

jquery mobile有点像微信的 weui 微信网页开发样式库。网址为:http://mp.weixin.qq.com/wiki/2/ae9782fb42e47ad79eb7b361c2149d16.html
手机端各种样式库都出来了,很方便。
感觉没有bootstrap好,不能做PC端的。

相关文章

网友评论

      本文标题:2016.09.22 Jquery mobile 制作单页面多应

      本文链接:https://www.haomeiwen.com/subject/lyrtyttx.html