Programming Steps
Step-By-Step Programming For Beginners
Auto-Codes
C Language
Cobol 85 Language
ColdFusion Language
Cordova
HTML5
Java Language
Mobile
Objective-C Language
PhoneGap
PHP
Python Language
Ruby Language
Learn the powerful enterprise adaptable database:
Getting Started With ADABAS & Natural
Friday, June 2, 2017
223 Ionic-v1 Popover: Nightly
Popover: Nightly
code example:
<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>Ionic Popover</title> <link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet"> <script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script> <style> body { cursor: url('https://ionicframework.com/img/finger.png'), auto; } </style> </head> <body class="platform-ios" ng-controller="AppCtrl"> <div class="bar bar-header"> <h1 class="title">Popover</h1> <div class="buttons"> <button class="button button-icon ion-more" ng-click="popover.show($event)"> </button> </div> </div> <div class="bar bar-subheader"> <div class=" button-bar"> <button class="button button-light button-android" ng-class="{ 'button\-positive': demo == 'ios' }" ng-click="setPlatform('ios')"> iOS </button> <button class="button button-light button-android" ng-class="{ 'button\-positive': demo == 'android' }" ng-click="setPlatform('android')"> Android </button> <button class="button button-light button-android" ng-class="{ 'button\-positive': demo == 'ionic' }" ng-click="setPlatform('ionic')"> Ionic </button> </div> </div> <ion-content class="padding has-subheader"> Click the more info icon in the top right. In an actual app the platform style will automatically be set. </ion-content> <script id="templates/popover.html" type="text/ng-template"> <ion-popover-view> <ion-content> <div class="list"> <a class="item" href="https://learn.ionicframework.com/" target="_blank"> Learn Ionic </a> <a class="item" href="https://ionicframework.com/docs/" target="_blank"> Documentation </a> <a class="item" href="https://showcase.ionicframework.com/" target="_blank"> Showcase </a> <a class="item" href="https://ionicframework.com/submit-issue/" target="_blank"> Submit an Issue </a> <a class="item" href="https://github.com/driftyco/ionic" target="_blank"> Github Repo </a> </div> </ion-content> </ion-popover-view> </script> <script> angular.module('ionicApp', ['ionic']) .controller('AppCtrl', function($scope, $ionicPopover) { $ionicPopover.fromTemplateUrl('templates/popover.html', { scope: $scope, }).then(function(popover) { $scope.popover = popover; }); $scope.demo = 'ios'; $scope.setPlatform = function(p) { document.body.classList.remove('platform-ios'); document.body.classList.remove('platform-android'); document.body.classList.add('platform-' + p); $scope.demo = p; } }); </script> </body> </html>
See the Pen
Popover: Nightly
by Ionic (
@ionic
) on
CodePen
.
https://codepen.io/ionic/pens/public
201706,20170602
Related Posts:
Ionic V1 Project My Club
315 ionic-v1 Ionic Tinder Cards 2
314 ionic-v1 Ionic Slide Tab
313 ionic-v1 Custom Loading Bar
312 ionic-v1 Ionic Simple Progress ...
Related Posts Widget
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment