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
205 Ionic-v1 Swipeable Cards nightly
Swipeable Cards nightly
code example:
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>Ionic Swipe Down</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="https://code.ionicframework.com/contrib/ionic-contrib-swipecards/ionic.swipecards.js?v=5"></script> <style> body { cursor: url('https://ionicframework.com/img/finger.png'), auto; } /* Your app's CSS, go crazy, make it your own */ .ionic-logo { display: block; margin: 15px auto; width: 96px; height: 96px; } .pane { background-color: #333 !important } .bar.bar-transparent { background-color: transparent; background-image: none; border: none; } .bar .title { color: #eee; } .swipe-cards { position: fixed; } .swipe-cards { position: fixed; } .swipe-card { -webkit-perspective: 1000; -webkit-backface-visibility: hidden; /*display: none;*/ position: fixed; -webkit-transform: scale(1,1); left: 50%; top: 50%; width: 300px; height: 300px; margin-left: -150px; margin-top: -150px; box-sizing: border-box; background-color: rgb(255,255,255); border-radius: 4px; overflow: hidden; -webkit-animation-fill-mode: forwards; } .swipe-card .title { height: 40px; padding: 5px; line-height: 30px; color: #444; } .swipe-card .image { overflow: hidden; max-height: 210px; } .swipe-card .button { border: none; } .swipe-card .image img { width: 100%; border-radius: 0px 0px 4px 4px; } #start-card { color: #fff; background-color: #30BD8A; line-height: 300px; word-wrap: break-word; border: 6px solid #4CD68E; text-align: center; } #start-card span { display: inline-block; line-height: 40px; width: 200px; font-size: 30px; vertical-align: middle; } #footer .button { color: #fff; } @-webkit-keyframes bounceIn { 0% { -webkit-transform: scale(0,0); } 70% { -webkit-transform: scale(1.2,1.2); } 100% { -webkit-transform: scale(1,1); } } .swipe-card.pop-in-start { -webkit-transform: scale(0,0); } .swipe-card.pop-in { -webkit-animation: bounceIn 0.3s ease-out; } </style> </head> <body ng-app="starter" class="slide-left-right-ios7" no-scroll> <ion-pane ng-controller="CardsCtrl"> <ion-header-bar class="bar-transparent"> <h1 class="title">Help Out</h1> </ion-header-bar> <swipe-cards on-card-swipe="onSwipe($event)"> <swipe-cards> <swipe-card on-card-swipe="cardSwiped()" id="start-card"> Swipe down for a new card </swipe-card> <swipe-card ng-repeat="card in cards" on-destroy="cardDestroyed($index)" on-card-swipe="cardSwiped($index)"> <div ng-controller="CardCtrl"> <div class="title"> {{card.title}} </div> <div class="image"> <img ng-src="{{card.image}}"> </div> <div class="button-bar"> <button class="button button-clear button-positive" ng-click="goAway()">Answer</button> <button class="button button-clear button-positive" ng-click="goAway()">Decline</button> </div> </div> </swipe-card> </swipe-cards> </ion-pane> <!-- quick cache hack --> <img src="https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic.png" style="display: none"> <img src="https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic1.png" style="display: none"> <img src="https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic2.png" style="display: none"> <img src="https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic3.png" style="display: none"> <img src="https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic4.png" style="display: none"> <script> angular.module('starter', ['ionic', 'ionic.contrib.ui.cards']) .directive('noScroll', function($document) { return { restrict: 'A', link: function($scope, $element, $attr) { $document.on('touchmove', function(e) { e.preventDefault(); }); } } }) .controller('CardsCtrl', function($scope, $ionicSwipeCardDelegate) { var cardTypes = [{ title: 'Swipe down to clear the card', image: 'http://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic.png' }, { title: 'Where is this?', image: 'https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic.png' }, { title: 'What kind of grass is this?', image: 'https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic2.png' }, { title: 'What beach is this?', image: 'https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic3.png' }, { title: 'What kind of clouds are these?', image: 'https://ionicframework.com.s3.amazonaws.com/demos/ionic-contrib-swipecards/pic4.png' }]; $scope.cards = Array.prototype.slice.call(cardTypes, 0, 0); $scope.cardSwiped = function(index) { $scope.addCard(); }; $scope.cardDestroyed = function(index) { $scope.cards.splice(index, 1); }; $scope.addCard = function() { var newCard = cardTypes[Math.floor(Math.random() * cardTypes.length)]; newCard.id = Math.random(); $scope.cards.push(angular.extend({}, newCard)); } }) .controller('CardCtrl', function($scope, $ionicSwipeCardDelegate) { $scope.goAway = function() { var card = $ionicSwipeCardDelegate.getSwipeableCard($scope); card.swipe(); }; }); </script> </body> </html>
See the Pen
Swipeable Cards nightly
by Ionic (
@ionic
) on
CodePen
.
201706,20170602
Related Posts:
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 ...
Ionic V1 Project My Club
Related Posts Widget
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment