Framework7安装详解

本文概述

  • 下载Framework7
  • 从CDN下载Framework7库
  • Ampps服务器
下载Framework7 有两种下载Framework7的方法:
从Framework7 Github存储库下载:
或者, 你可以通过Bower安装Framework7:
bower install framework7

从CDN下载Framework7库 CDN或内容交付网络是旨在将文件提供给用户的服务器网络。如果你在网页中使用CDN链接, 则将托管文件的责任从你自己的服务器移到了一系列外部服务器上。这还提供了一个优势, 即如果你的网页的访问者已经从同一CDN下载了Framework7的副本, 则不必重新下载它。你可以将以下CDN文件包括在HTML文档中。
CDN for iOS App布局:
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />

Framework7 iOS CSS库:
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />

适用于Android /材料应用布局的CDN:
< script src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"> < /script>

Framework7 JS库:
< script src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.material.min.css"> < /script>

Ampps服务器 我们使用AMPPS(AMPPS是Apache, MySQL, MongoDB, PHP, Perl和Python的WAMP, MAMP和LAMP堆栈)服务器来执行我们的所有示例。
在下载/安装的软件包中, 我们需要dist /文件夹中的文件。
Dist文件夹路径:
默认情况下dist /文件夹路径为:C:\ Program Files(x86)\ Ampps \ www \ dist
Framework7安装详解

文章图片
将HTML, .JS和CSS文件放入服务器根文件夹(dist文件夹), 打开本地主机, 然后运行页面。
例:
创建具有以下代码的HTML页面“ framework7_environment.html”:
< !DOCTYPE html> < html> < head> < meta name = "viewport" content = "width = device-width, initial-scale = 1, maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" /> < meta name = "apple-mobile-web-app-capable" content = "yes" /> < meta name = "apple-mobile-web-app-status-bar-style" content = "black" /> < title> My App< /title> < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" /> < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" /> < /head> < body> //you can control the background color of the Status bar < div class = "statusbar-overlay"> < /div> < div class = "panel-overlay"> < /div> < div class = "panel panel-right panel-reveal"> < div class = "content-block"> < p> Contents goes here...< /p> < /div> < /div> < div class = "views"> < div class = "view view-main"> < div class = "navbar"> < div class = "navbar-inner"> < div class = "center sliding"> My App< /div> < div class = "right"> < a href = "http://www.srcmini.com/#" class = "link icon-only open-panel"> < i class = "icon icon-bars"> < /i> < /a> < /div> < /div> < /div> < div class = "pages navbar-through toolbar-through"> < div data-page = "index" class = "page"> < div class = "page-content"> < p> This is simple application...< /p> < div class = "list-block"> < ul> < li> < a href = "http://www.srcmini.com/envirmnt_about.html" class = ""> < div class = "item-content"> < div class = "item-inner"> < div class = "item-title"> Blog< /div> < /div> < /div> < /a> < /li> < /ul> < /div> < /div> < /div> < /div> < div class = "toolbar"> < div class = "toolbar-inner"> < a href = "http://www.srcmini.com/#" class = "link"> First Link< /a> < a href = "http://www.srcmini.com/#" class = "link"> Second Link< /a> < /div> < /div> < /div> < /div> < script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"> < /script> < script> // here initialize the app var myApp = new Framework7(); // If your using custom DOM library, then save it to $$ variable var $$ = Dom7; // Add the view var mainView = myApp.addView('.view-main', {// enable the dynamic navbar for this view: dynamicNavbar: true }); //use the 'pageInit' event handler for all pages $$(document).on('pageInit', function (e) {//get page data from event data var page = e.detail.page; if (page.name === 'blog') {// you will get below message in alert box when page with data-page attribute is equal to "about" myApp.alert('Here its your About page'); } }) < /script> < /body> < /html>

创建另一个具有以下代码的HTML页面“ envirmnt_about.html”:
. < div class = "navbar"> < div class = "navbar-inner"> < div class = "left"> < a href = "http://www.srcmini.com/#" class = "back link"> < i class = "icon icon-back"> < /i> < span> Back< /span> < /a> < /div> < div class = "center sliding"> My Blog< /div> < div class = "right"> < a href = "http://www.srcmini.com/#" class = "link icon-only open-panel"> < i class = "icon icon-bars"> < /i> < /a> < /div> < /div> < /div> < div class = "pages"> < div data-page = "blog" class = "page"> < div class = "page-content"> < div class = "content-block"> < h2> My Blog< /h2> < p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.< /p> < /div> < /div> < /div> < /div>

【Framework7安装详解】将以上两个页面保存在dist文件夹中。现在打开服务器:http:// localhost / dist /并运行示例。

    推荐阅读