search
HomeWeb Front-endHTML TutorialAgile Chinese produces HTML5 CSS3 JS mobile application development framework_html/css_WEB-ITnose

Agile is a mobile application development framework based on HTML5 CSS3 JS. The experience is as close as possible to Native Like, and it supports both single-page mode and multi-page mode.

Agile allows HTML5 to give full play to its advantages in mobile application development. All developers can get started quickly, all devices can be adapted, and all projects are applicable.

Simple and scalable
Agile supports Zepto and jQuery dual engines and corresponding extensions; at the same time, Agile supports mobile applications in single-page mode and multi-page mode, and can be integrated with popular cross-platforms such as ExMobi and PhoneGap development framework.

One framework, multiple devices
With the help of Agile, your mobile application can quickly and effectively adapt to mobile phones, tablets and other devices through the same code. All of this is CSS Media Query )’s contribution.

Complete components
Agile provides comprehensive and beautiful documentation. Here you can find all the detailed documentation about HTML elements, HTML and CSS components, and JavaScript plugins.

Getting Started

The Agile framework itself is developed based on standard HTML5. However, due to the large number of local capabilities required in mobile applications, HTML5 is not capable, so it usually needs to rely on a container to run and be able to call Native capabilities in the container.

ExMobi is a mobile application platform launched by Fengxingxingkong. In addition to encapsulating a wealth of native components and local capabilities, it also has good support for HTML5, so you can get a better experience using Agile in ExMobi. In addition, Agile can also run on other containers such as PhoneGap. For how to use Agile in ExMobi, please refer to http://www.exmobi.cn/agile/case.html.

Directory structure
After downloading the Agile source code, unzip it to any directory and you will see four directories "agile", "exmobijs", "ratchet" and "icomoon". Agile is the framework. For core and other directories, please click on the corresponding link above for introduction. How to use them will also be mentioned in the document. The following is the directory structure of agile:

agile/
├── css/
│ ├── agile.css
│ ├── agile.min.css
│ └── check.css
└── js/
├── agile.js
├── agile.min.js
├── iscroll.js
├─ ─ template-native.js
├── touch2mouse.js
└── zepto.js

Some of the files here are not necessary, and some can be replaced. Among them, the core framework of agile with agile.* and app.* must be referenced, and the others are third-party auxiliary frameworks. In general production environments, it is recommended to use files with min.*.

Agile supports dual engines, namely Zepto and jQuery, so zepto here can also be replaced by jQuery, but it is recommended to use Zepto because Zepto is more efficient.

iScroll.js is a solution for mobile page scrolling. The v4.2.5 version is used here. The interface has been encapsulated in Agile. Generally, there is no need to call it directly. If you need to use it, please refer to iScroll 4.2.5 Simple API.

template-native.js is a classic JS template engine that can dynamically inject JSON data into a template file. For details, please visit its location on github.

Basic template
Using the Agile framework, the most basic CSS, JavaScript and HTML pages to be referenced are as follows (all JS and CSS use relative addresses):





webapp







Hello World










Obtain

Official website: http://www.exmobi.cn/agile/index.html
Help document: http://www.exmobi.cn/course/course_27.html
Download from this site: agile-dist v3.0.0 | Updated on: 2015-01-15

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
How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

How do you create a list in HTML?How do you create a list in HTML?May 06, 2025 am 12:01 AM

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML in Action: Examples of Website StructureHTML in Action: Examples of Website StructureMay 05, 2025 am 12:03 AM

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

How do you insert an image into an HTML page?How do you insert an image into an HTML page?May 04, 2025 am 12:02 AM

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

HTML's Purpose: Enabling Web Browsers to Display ContentHTML's Purpose: Enabling Web Browsers to Display ContentMay 03, 2025 am 12:03 AM

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

Why are HTML tags important for web development?Why are HTML tags important for web development?May 02, 2025 am 12:03 AM

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

Explain the importance of using consistent coding style for HTML tags and attributes.Explain the importance of using consistent coding style for HTML tags and attributes.May 01, 2025 am 12:01 AM

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.