Add a simple intro tutorial to your app
Forked from Mike Hartington's Pen Ionic Intro Tutorial with Splashscreen.
Forked from Mike Hartington's Pen Ionic Intro Tutorial with Splashscreen.
A Pen by Allan Kimaina on CodePen.
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> | |
<title>Ionic App</title> | |
<link href="http://code.ionicframework.com/0.9.26/css/ionic.min.css" rel="stylesheet"> | |
<script src="http://code.ionicframework.com/0.9.26/js/ionic.bundle.min.js"></script> | |
</head> | |
<body ng-app="ionicApp" animation="slide-left-right-ios7"> | |
<ion-nav-bar class="nav-title-slide-ios7" type="bar-default" back-button-type="button-icon" back-button-icon="icon ion-arrow-left-c"></ion-nav-bar> | |
<ion-nav-view></ion-nav-view> | |
<script id="intro.html" type="text/ng-template"> | |
<ion-view left-buttons="leftButtons" right-buttons="rightButtons"> | |
<ion-slide-box on-slide-changed="slideChanged(index)"> | |
<ion-slide style="background-image:url("http://cdn.wonderfulengineering.com/wp-content/uploads/2014/07/background-wallpapers-32.jpg");"> | |
<h3>Thank you for choosing the Awesome App!</h3> | |
<div id="logo"> | |
<img src="http://code.ionicframework.com/assets/img/app_icon.png"> | |
</div> | |
<p> | |
We've worked super hard to make you happy. | |
</p> | |
<p> | |
But if you are angry, too bad. | |
</p> | |
</ion-slide> | |
<ion-slide> | |
<h3>Using Awesome</h3> | |
<div id="list"> | |
<h5>Just three steps:</h5> | |
<ol> | |
<li>Be awesome</li> | |
<li>Stay awesome</li> | |
<li>There is no step 3</li> | |
</ol> | |
</div> | |
</ion-slide> | |
<ion-slide> | |
<h3>Any questions?</h3> | |
<p> | |
Too bad! | |
</p> | |
</ion-slide> | |
</ion-slide-box> | |
</ion-view> | |
</script> | |
<script id="main.html" type="text/ng-template"> | |
<ion-view left-buttons="leftButtons" right-buttons="rightButtons" hide-back-button="true" title="'Awesome'"> | |
<ion-content padding="true" has-header="true"> | |
<h1>Main app here</h1> | |
<button class="button" ng-click="toIntro()">Do Tutorial Again</button> | |
</ion-content> | |
</ion-view> | |
</script> | |
</body> | |
</html> |
Add a simple intro tutorial to your app
Forked from Mike Hartington's Pen Ionic Intro Tutorial with Splashscreen.
Forked from Mike Hartington's Pen Ionic Intro Tutorial with Splashscreen.
A Pen by Allan Kimaina on CodePen.
- |
body { | |
cursor: url('http://ionicframework.com/img/finger.png'), auto; | |
} | |
.slider { | |
height: 100%; | |
} | |
.slider-slide { | |
padding-top: 80px; | |
color: #000; | |
background-color: #fff; | |
text-align: center; | |
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
font-weight: 300; | |
} | |
#logo { | |
margin: 30px 0px; | |
} | |
#list { | |
width: 170px; | |
margin: 30px auto; | |
font-size: 20px; | |
} | |
#list ol { | |
margin-top: 30px; | |
} | |
#list ol li { | |
text-align: left; | |
list-style: decimal; | |
margin: 10px 0px; | |
} |