一,下載ionic v1.0.1版本,下載地址爲:ionic-v1.0.1.zip。javascript
ionic 最新版本下載地址:http://ionicframework.com/docs/overview/#download。css
下載完以下圖所示:html
二,桌面上新創建文件夾,以下圖所示:java
三,在webApp裏面新創建index.html,ionic,同時把ionic-v1文件夾中的 css/ionic.min.css 和 js/ionic.bundle.min.js 文件拖入到ionic中。以下圖所示:web
四,用Sublime打開webApp,同時在index.html中加入代碼:app
<html ng-app="ionicApp"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>菜鳥教程(runoob.com)</title> <link href="http://www.runoob.com/static/ionic/css/ionic.min.css" rel="stylesheet"> <script src="http://www.runoob.com/static/ionic/js/ionic.bundle.min.js"></script> <script type="text/javascript"> angular.module('ionicApp', ['ionic']) .controller('MyCtrl', function($scope) { }); </script> <style> body { cursor: url('http://www.runoob.com/static/img/finger.png'), auto; } </style> </head> <body ng-controller="MyCtrl"> <ion-header-bar class="bar-positive"> <h1 class="title">Hello World!</h1> </ion-header-bar> <ion-content> <p>個人第一個 ionic 應用。</p> </ion-content> </body> </html>
五,sublime的最終效果圖,以下圖所示:ionic
六,運行代碼,效果圖以下圖所示:post
七,第一個應用程序運行成功啦。url
參考資料:《菜鳥教程》spa