search
HomeWeb Front-endJS TutorialDetailed explanation of the steps to develop mobile Web App using Mobile framework

This time I will bring you a detailed explanation of the steps to develop a mobile Web App using the Mobile framework. What are the precautions for developing a mobile Web App using the Mobile framework? The following is a practical case, let’s take a look.

1. jQuery Mobile’s progressive enhancement design and browser supportAccording to Wikipedia’s explanation, the design of progressive enhancement mainly includes the following points

  • basic content should be accessible to all web browsers (all browsers should be able to access all basic content)

  • basic functionality should be accessible to all web browsers (all browsers The server should have access to all basic functions)

  • sparse, semantic markup contains all content (all content should be within a small number of semantic tags)

  • enhanced layout is provided by externally linked CSS (enhanced functionality should be provided by external CSS)

  • enhanced behavior is provided by unobtrusive, externally linked JavaScript (enhanced behavior provided by external JavaScript)

  • end-user web browser preferences are respected (end-user browser habits should be respected)

If HTML5 technologies such as Web SQL Database are used in actual development, the final Web App support will be lower than the support of jQuery Mobile above, but the two mainstream mobile browsers Android and Apple iOS system browsers And its desktop version certainly provides the best support.

2.HTML5 data-* attributesjQuery Mobile relies on HTML5 data-* attributes to provide a series of support (UI components, transitions and page structures), and does not support browsing of this HTML5 attribute. The browser will ignore the effect of these attributes by default. For example, to add a header to the page, you can use the following HTML:

<p>
  </p><h1 id="jQuery-Mobile-Demo">jQuery Mobile Demo</h1>

This will generate a jQuery Mobile style header, as you can see from the picture below. It turns out that this header style is very suitable for mobile devices, and after adding the data-role="header" attribute, the h1 in p will also be rendered into a certain style. This is the convenience and speed of jQuery Mobile, and it is also its design. Purpose - Write Less, Do More.

In addition, jQuery Mobile also has the following data-role attributes (some attributes), which have been given certain styles and user operation response effects.

data-role="content" , data-role="button" , data-theme="" , data-role="controlgroup" , data-inline="true" , ​​data-role=" fieldcontain", data-role="listview", data-rel="dialog", data-transition="pop", respectively corresponding to the main content, buttons, theme colors, edited buttons, inline buttons, form elements, lists Views, dialog boxes, page transitions.

3.jQuery Mobile Basic useMethod1.Introduction of jQuery Mobile
To use jQuery Mobile, you need to introduce the jQuery Mobile component in the web page header, including the following Part
(1) jQuery library
(2) jQuery Mobile CSS
(3) jQuery Mobile library

You can introduce the above components through such a head

  <title>jQuery Mobile Demo</title>
  <meta>
  <meta>
  <link>
  <script></script>
  <script></script>

2. Add viewportIn the Android browser, if the page width is not set, it will think that the page width is 980px, so we can add a viewport in the head to let the mobile browser know the screen size, just a The viewport tag already brings a better experience to users.

<meta>

3. Simple page exampleAfter introducing the components required by jQuery Mobile, we can create a jQuery Mobile page. A simple example is given below.

nbsp;html>


  <title>jQuery Mobile Demo</title>
  <meta>
  <meta>
  <link>
  <script></script>
  <script></script>

 

 

    

    

jQuery Mobile Demo

       

    

主体内容

       

    

        

2016517163442696.png (335×365)

For jQuery Mobile, each defined data-role="page" is equivalent to a page. jQuery Mobile uses Ajax to operate the DOM by default, automatically hiding the first For all pages except one page, when a link is clicked to link to other pages, the content of the new page will be loaded in the Ajax method. A complete example is given below. In addition, we can also use some HTML5 semantic tags. For example, the p of header can directly use the header tag. For details, see the example below.

nbsp;html>


  <title>jQuery Mobile Demo</title>
  <meta>
  <meta>
  <link>
  <script></script>
  <script></script>


  

    

jQuery Mobile Demo

  
  

    列表页面   

  
       

  

    

jQuery Mobile Demo

  
  

    

     
       
 

 四.开发原则首先我们必须知道,一款优秀的 Web App ,需要有良好的 UI 与用户体验(UE),虽然本质上作为一个站点,内容才是用户需要的,但我们仍需要使用良好的 UI 与 UE 来作为内容与用户的连接,因此我们引入 jQuery Mobile 来为 Web App 制作 UI 与交互。

有了 Web App 的界面,还需要数据的交互,这样才能做出 App 。这里可以使用 PHP 等服务器脚本与 Mysql 等数据库来为 Web App 提供数据驱动,但 Kayo 希望采用一种新的方法,也就是 HTML5 的方法,使用 HTML5 规范提供的 Web SQL Database —— 一个简单强大的 Javascript 数据库 API, 可以在本地数据库中存储数据(如内嵌在浏览器中的 SQLite ),另外还可以使用 HTML5 规范中的 Storage (本地储存) 来储存数据,这样就可以减少 Web App 对于网络的依赖,并且整个 Web App 都是使用前端的技术完成(很震撼吧!)。

最后不得不提的是 offline application cache (离线程序缓存),它也是 HTML5 的特性,允许用户在无网络连接的情况下运行 Web App,因此我们可以利用此特性制作支持离线使用的 Web App ,进一步减少 Web App 对于网络的依赖。

1.响应式设计响应式网页设计由 Ethan Marcotte 提出,通俗点说,就是网站界面能够兼容多种终端,而不是每种终端各自做一个界面。腾讯等大型网站都有针对不同的设备做出不同的界面,比如 3g 版,触屏版,ipad……,这样就会增加了很多重复的工作量,因此我们可以为网站渐进的设计一个界面,自动适应不同的设备,当然设备间的效果可以有所差距。这里 Kayo 小插一段,响应式设计的诞生,很大程度上归功于移动互联网的发展与移动设备硬件的提升,而移动互联网的发展本身也依赖于移动设备硬件的提升,因此想不断提升的 App ,还得先要硬件厂商给力。

言归正传,这里提到响应式设计的理念当然是希望在设计 Web App 时也应用到,而这些 jQuery Mobile 已经为开发者预先做好, jQuery Mobile 不但默认的 UI 样式里已经按响应式设计做好,它还另外提供了一些为响应式设计而做的方法,日后会详细介绍。

2.渐进式设计

“前端设计时通过渐进增强功能来设计一直也是 Kayo 的设计想法,因为不同的平台,不同的设备有着不同的 Web 环境,因此对于一些出色的前端效果很难保证在每台设备上都呈现相同的效果,因此与其为了在所有设备上做到一样的效果而降低整体的前端样式,不如对于好的设备可以呈现更出色的效果,而基本的效果就兼容所有的设备。jQuery Mobile 的设计也是如此,核心的功能支持所有的设备,而较新的设备则可以获得更为优秀的页面效果。”

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

实现jquery上传图片前本地先预览

Uploadify实现显示进度条上传图片

jQuery+formdata做出上传进度特效(附步骤代码)

The above is the detailed content of Detailed explanation of the steps to develop mobile Web App using Mobile framework. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Web Speech API开发者指南:它是什么以及如何工作Web Speech API开发者指南:它是什么以及如何工作Apr 11, 2023 pm 07:22 PM

​译者 | 李睿审校 | 孙淑娟Web Speech API是一种Web技术,允许用户将语音数据合并到应用程序中。它可以通过浏览器将语音转换为文本,反之亦然。Web Speech API于2012年由W3C社区引入。而在十年之后,这个API仍在开发中,这是因为浏览器兼容性有限。该API既支持短时输入片段,例如一个口头命令,也支持长时连续的输入。广泛的听写能力使它非常适合与Applause应用程序集成,而简短的输入很适合语言翻译。语音识别对可访问性产生了巨大的影响。残疾用户可以使用语音更轻松地浏览

如何使用Docker部署Java Web应用程序如何使用Docker部署Java Web应用程序Apr 25, 2023 pm 08:28 PM

docker部署javaweb系统1.在root目录下创建一个路径test/appmkdirtest&&cdtest&&mkdirapp&&cdapp2.将apache-tomcat-7.0.29.tar.gz及jdk-7u25-linux-x64.tar.gz拷贝到app目录下3.解压两个tar.gz文件tar-zxvfapache-tomcat-7.0.29.tar.gztar-zxvfjdk-7u25-linux-x64.tar.gz4.对解

web端是什么意思web端是什么意思Apr 17, 2019 pm 04:01 PM

web端指的是电脑端的网页版。在网页设计中我们称web为网页,它表现为三种形式,分别是超文本(hypertext)、超媒体(hypermedia)和超文本传输协议(HTTP)。

Yaber T2 (Plus): Compact projector with Full HD resolution, battery, JBL sound and smart functionsYaber T2 (Plus): Compact projector with Full HD resolution, battery, JBL sound and smart functionsJun 27, 2024 am 10:31 AM

Yaber products are available on Amazon, and now the company offers a new projector - Yaber T2. The model is available in two versions: the Yaber T2 and the Yaber T2 Plus. The Yaber T2 Plus costs 349 dollars instead of 299 dollars and comes with a TV

web前端和后端开发有什么区别web前端和后端开发有什么区别Jan 29, 2023 am 10:27 AM

区别:1、前端指的是用户可见的界面,后端是指用户看不见的东西,考虑的是底层业务逻辑的实现,平台的稳定性与性能等。2、前端开发用到的技术包括html5、css3、js、jquery、Bootstrap、Node.js、Vue等;而后端开发用到的是java、php、Http协议等服务器技术。3、从应用范围来看,前端开发不仅被常人所知,且应用场景也要比后端广泛的太多太多。

web前端打包工具有哪些web前端打包工具有哪些Aug 23, 2022 pm 05:31 PM

web前端打包工具有:1、Webpack,是一个模块化管理工具和打包工具可以将不同模块的文件打包整合在一起,并且保证它们之间的引用正确,执行有序;2、Grunt,一个前端打包构建工具;3、Gulp,用代码方式来写打包脚本;4、Rollup,ES6模块化打包工具;5、Parcel,一款速度极快、零配置的web应用程序打包器;6、equireJS,是一个JS文件和模块加载器。

深入探讨“高并发大流量”访问的解决思路和方案深入探讨“高并发大流量”访问的解决思路和方案May 11, 2022 pm 02:18 PM

怎么解决高并发大流量问题?下面本篇文章就来给大家分享下高并发大流量web解决思路及方案,希望对大家有所帮助!

Python轻量级Web框架:Bottle库!Python轻量级Web框架:Bottle库!Apr 13, 2023 pm 02:10 PM

和它本身的轻便一样,Bottle库的使用也十分简单。相信在看到本文前,读者对python也已经有了简单的了解。那么究竟何种神秘的操作,才能用百行代码完成一个服务器的功能?让我们拭目以待。1. Bottle库安装1)使用pip安装2)下载Bottle文件https://github.com/bottlepy/bottle/blob/master/bottle.py2.“HelloWorld!”所谓万事功成先HelloWorld,从这个简单的示例中,了解Bottle的基本机制。先上代码:首先我们从b

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),