首页
/ jQuery Mobile 960 项目教程

jQuery Mobile 960 项目教程

2024-08-25 07:46:38作者:钟日瑜

1. 项目的目录结构及介绍

jquery-mobile-960/
├── css/
│   ├── 960.css
│   ├── demoFixed.html
│   ├── demoFluid.html
│   ├── experimentFixed.html
│   ├── experimentFluid.html
│   ├── index.html
│   ├── jquery-mobile-960.komodoproject
│   ├── testOfficialGrid.html
├── js/
│   ├── 960.js
├── lib/
│   ├── 960.lib
├── MIT-LICENSE.txt
├── Makefile
├── NOTES.md
├── README.md
  • css/ 目录:包含项目的样式文件和一些示例页面。
  • js/ 目录:包含项目的JavaScript文件。
  • lib/ 目录:包含项目依赖的库文件。
  • MIT-LICENSE.txt:项目的许可证文件。
  • Makefile:用于构建项目的Makefile文件。
  • NOTES.md:项目的笔记文件。
  • README.md:项目的说明文件。

2. 项目的启动文件介绍

项目的启动文件是 index.html,它位于 css/ 目录下。这个文件是项目的入口点,包含了项目的基本结构和初始化代码。

<!DOCTYPE html>
<html>
<head>
    <title>jQuery Mobile 960</title>
    <link rel="stylesheet" href="960.css">
</head>
<body>
    <h1>jQuery Mobile 960</h1>
    <script src="960.js"></script>
</body>
</html>

3. 项目的配置文件介绍

项目的配置文件主要是 MakefileNOTES.md

  • Makefile:用于自动化构建和部署项目的配置文件。
  • NOTES.md:包含项目的开发笔记和配置说明。

这些文件可以帮助开发者更好地理解和配置项目。

登录后查看全文
热门项目推荐