"ionic layout"
Bootstrap 3.0.0 Snippet by evarevirus

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html><html class=''> <head><script src='//production-assets.codepen.io/assets/editor/live/console_runner-079c09a0e3b9ff743e39ee2d5637b9216b3545af0de366d4b9aad9dc87e26bfd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/events_runner-73716630c22bbc8cff4bd0f07b135f00a0bdc5d14629260c3ec49e5606f98fdd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/css_live_reload_init-2c0dc5167d60a5af3ee189d570b1835129687ea2a61bee3513dee3a50c115a77.js'></script><meta charset='UTF-8'><meta name="robots" content="noindex"><link rel="shortcut icon" type="image/x-icon" href="//production-assets.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico" /><link rel="mask-icon" type="" href="//production-assets.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg" color="#111" /><link rel="canonical" href="https://codepen.io/kshiroma/pen/OMXopj?depth=everything&order=popularity&page=73&q=ionic&show_forks=false" /> <style class="cp-pen-styles"></style></head><body> <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> </head> <body class="platform-ios" ng-controller="AppCtrl"> <div class="bar bar-header bar-assertive"> <h1 class="title">Form User</h1> <div class="buttons"> <button class="button button-icon ion-more" ng-click="popover.show($event)"> </button> </div> </div> <ion-content class="has-header"> <div class="list"> <label class="item item-input"> <span class="input-label">Nombre</span> <input type="text"> </label> <label class="item item-input"> <span class="input-label">Apellido</span> <input type="password"> </label> <label class="item item-input"> <span class="input-label">Correo Electrónico</span> <input type="password"> </label> <label class="item item-input"> <span class="input-label">Avatar</span> <input type="file"> </label> <label class="item item-input item-select"> <div class="input-label"> Ciudad </div> <select> <option>Blue</option> <option selected>Green</option> <option>Red</option> </select> </label> <label class="item item-input item-select"> <div class="input-label"> Sexo </div> <select> <option>Maculino</option> <option selected>Femenino</option> </select> </label> <label class="item item-input item-select"> <div class="input-label"> Fecha Nacimiento </div> <input type="date"> </label> <div class="padding"> <button class="button button-block button-assertive">Guardar</button> </div> </div> </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> </body> </html> <script src='//production-assets.codepen.io/assets/common/stopExecutionOnTimeout-b2a7b3fe212eaa732349046d8416e00a9dec26eb7fd347590fbced3ab38af52e.js'></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; } }); //# sourceURL=pen.js </script> </body></html>

Related: See More


Questions / Comments: