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
207 Ionic-v1 Flickr Search Example: Nightly
Flickr Search Example: 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>Flickr</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionic/1.3.2/css/ionic.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/ionic/1.3.2/js/ionic.bundle.min.js"></script> <script src="//code.ionicframework.com/nightly/js/angular/angular-resource.js"></script> <style> #search-input { text-align: center; } #photos { margin: auto; } .photo { width: 100px; height: 100px; margin: 1px; float: left; overflow: hidden; } .photo img { //min-width: 100%; //min-height: 100%; //max-width: 100%; //max-height: 150%; } #search-bar { background: none; position: absolute; width: 100%; top: 44px; height: 40px; z-index: 3; } #search-bar .item { background: none; border: none; } #content { top: 44px; padding-top: 45px; padding-bottom: 20px; } </style> </head> <body ng-controller="FlickrCtrl"> <ion-header-bar class="bar-dark"> <h1 class="title">Flickr Search</h1> </ion-header-bar> <div id="search-bar"> <div class="item item-input-inset"> <label class="item-input-wrapper" id="search-input"> <i class="icon ion-search placeholder-icon"></i> <input type="text" placeholder="Search" ng-model="query" ng-change="search()"> </label> </div> </div> <ion-content id="content" push-search> <div id="photos" class="clearfix"> <div class="photo" ng-repeat="photo in photos.items"> <img ng-src="{{ photo.media.m }}"> </div> </div> </ion-content> <script> angular.module('ionicApp', ['ionic', 'ngResource']) .factory('Flickr', function($resource, $q) { var photosPublic = $resource('https://api.flickr.com/services/feeds/photos_public.gne', { format: 'json', jsoncallback: 'JSON_CALLBACK' }, { 'load': { 'method': 'JSONP' } }); return { search: function(query) { var q = $q.defer(); photosPublic.load({ tags: query }, function(resp) { q.resolve(resp); }, function(err) { q.reject(err); }) return q.promise; } } }) .controller('FlickrCtrl', function($scope, Flickr) { var doSearch = ionic.debounce(function(query) { Flickr.search(query).then(function(resp) { $scope.photos = resp; }); }, 500); $scope.search = function() { doSearch($scope.query); } }) .directive('pushSearch', function() { return { restrict: 'A', link: function($scope, $element, $attr) { var amt, st, header; $element.bind('scroll', function(e) { if(!header) { header = document.getElementById('search-bar'); } st = e.detail.scrollTop; if(st < 0) { header.style.webkitTransform = 'translate3d(0, 0px, 0)'; } else { header.style.webkitTransform = 'translate3d(0, ' + -st + 'px, 0)'; } }); } } }) .directive('photo', function($window) { return { restrict: 'C', link: function($scope, $element, $attr) { var size = ($window.outerWidth / 3) - 2; $element.css('width', size + 'px'); } } }); </script> </body> </html>
See the Pen
Flickr Search Example: Nightly
by Ionic (
@ionic
) on
CodePen
.
201706,20170602
Related Posts:
313 ionic-v1 Custom Loading Bar
312 ionic-v1 Ionic Simple Progress ...
Ionic V1 Project My Club
315 ionic-v1 Ionic Tinder Cards 2
314 ionic-v1 Ionic Slide Tab
Related Posts Widget
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment