Framework7-環境
この章では、Framework7をインストールしてセットアップする方法について説明します。
Framework7は2つの方法でダウンロードできます-
Framework7Githubリポジトリからダウンロード
以下に示すように、Bowerを使用してFramework7をインストールできます-
bower install framework7
Framework7のインストールが正常に完了したら、以下の手順に従って、アプリケーションでFramework7を使用する必要があります。
Step 1 −インストールする必要があります gulp-cli 次のコマンドを使用して、Framework7の開発バージョンとdistバージョンをビルドします。
npm install gulp-cli
CLIは、ガルプのためのコマンドラインユーティリティの略です。
Step 2 − Gulpは、次のコマンドを使用してグローバルにインストールする必要があります。
npm install --global gulp
Step 3−次に、NodeJSパッケージマネージャーをインストールします。これにより、依存関係の指定とリンクが容易になるノードプログラムがインストールされます。次のコマンドを使用してnpmをインストールします。
npm install
Step 4 − Framework7の開発バージョンは、次のコマンドを使用してビルドできます。
npm build
Step 5− Framework7の開発バージョンをビルドしたら、次のコマンドを使用して、dist /フォルダーからアプリのビルドを開始します。
npm dist
Step 6 −アプリフォルダーをサーバーに保持し、次のコマンドを実行してアプリのページ間を移動します。
gulp server
CDNからFramework7ライブラリをダウンロードする
CDNまたはコンテンツ配信ネットワークは、ユーザーにファイルを提供するように設計されたサーバーのネットワークです。WebページでCDNリンクを使用すると、ファイルをホストする責任が自分のサーバーから一連の外部サーバーに移ります。これには、Webページの訪問者が同じCDNからFramework7のコピーを既にダウンロードしている場合、再ダウンロードする必要がないという利点もあります。次のCDNファイルをHTMLドキュメントに含めることができます。
次のCDNは、 iOS App layout −
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
これは、Framework7 iOSCSSライブラリをアプリケーションに含めるために使用されます。
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
これは、Framework7iOS関連のカラースタイルをアプリケーションに含めるために使用されます。
次のCDNはで使用されます Android/Material App Layout −
<script src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
これは、Framework7JSライブラリをアプリケーションに含めるために使用されます。
<script src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.material.min.css"></script>
これは、Framework7マテリアルスタイリングをアプリケーションに含めるために使用されます。
このチュートリアルでは、ライブラリのCDNバージョンを使用しています。AMPPS(AMPPSはApache、MySQL、MongoDB、PHP、Perl、PythonのWAMP、MAMP、LAMPスタック)サーバーを使用して、すべての例を実行します。
例
次の例は、Framework7での単純なアプリケーションの使用法を示しています。このアプリケーションは、ナビゲーションバーをクリックすると、カスタマイズされたメッセージとともにアラートボックスを表示します。
<!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 = "#" 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 = "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 = "#" class = "link">First Link</a>
<a href = "#" 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>
次に、もう1つのHTMLページを作成します。 envirmnt_about.html 以下に示すように-
envirmnt_about.html
<div class = "navbar">
<div class = "navbar-inner">
<div class = "left">
<a href = "#" 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 = "#" 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>
出力
上記のコードがどのように機能するかを確認するために、次の手順を実行してみましょう-
上記のHTMLコードを次のように保存します framework7_environment.html サーバーのルートフォルダにあるファイル。
このHTMLファイルをhttp://localhost/framework7_environment.htmlとして開くと、出力が次のように表示されます。
ナビゲーションバーをクリックすると、カスタマイズされたメッセージを含むアラートボックスが表示されます。