Last active
August 29, 2015 14:03
-
-
Save hkusu/e4710421490d334f9cde to your computer and use it in GitHub Desktop.
AngularJSアプリケーションにチュートリアルを簡単に導入する ref: http://qiita.com/hkusu/items/7b3bd6e19cb28d5af8f4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bower search intro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="stylesheet" href="bower_components/intro.js/introjs.css" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bower install angular-intro.js --save |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="bower_components/intro.js/intro.js"></script> | |
| <script src="bower_components/angular-intro.js/src/angular-intro.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div ng-controller="MainCtrl" | |
| ng-intro-options="IntroOptions" ng-intro-method="CallMe" | |
| ng-intro-autostart="true"> | |
| 〜 | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div ng-controller="MainCtrl" | |
| ng-intro-options="IntroOptions" ng-intro-method="CallMe" | |
| ng-intro-autostart="true"> | |
| 〜 | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="step1" class="header"> | |
| <ul class="nav nav-pills pull-right"> | |
| <li class="active"><a ng-href="#">Home</a></li> | |
| <li><a ng-href="#"><span id="step5">About</span></a></li> | |
| <li><a ng-href="#">Contact</a></li> | |
| </ul> | |
| <h3 class="text-muted">angular intro test</h3> | |
| </div> | |
| <div class="jumbotron"> | |
| <h1>'Allo, 'Allo!</h1> | |
| <p id="step2" class="lead"> | |
| <img src="images/yeoman.png" alt="I'm Yeoman"><br> | |
| Always a pleasure scaffolding your apps. | |
| </p> | |
| <p id="step3"><a class="btn btn-lg btn-success" ng-href="#">Splendid!</a></p> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="bower_components/intro.js/intro.js"></script> | |
| <script src="bower_components/angular-intro.js/src/angular-intro.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment