BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" name="viewport"> <title>BootWiki 教程网</title> <link href="//cdn.staticfile.net/ionic/1.3.2/css/ionic.css" rel="stylesheet"> <script src="//cdn.staticfile.net/ionic/1.3.2/js/ionic.bundle.min.js"></script> <script type="text/javascript"> angular.module('starter', ['ionic']) .run(function($ionicPlatform) { $ionicPlatform.ready(function() { // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard // for form inputs) if(window.cordova && window.cordova.plugins.Keyboard) { cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true); } if(window.StatusBar) { StatusBar.styleDefault(); } }); }) .controller( 'actionsheetCtl',['$scope',function($scope){ $scope.onSwipe=function(){ console.log("onSwipe") } $scope.onSwipeUp=function(){ console.log("onSwipeUp") } $scope.onSwipeDown=function(){ console.log("onSwipeDown") } $scope.onSwipeLeft=function(){ console.log("onSwipeLeft") } $scope.onSwipeRight=function(){ console.log("onSwipeRight") } }]) </script> </head> <body ng-app="starter" ng-controller="actionsheetCtl" > <button class="button" on-swipe="onSwipe()">onSwipe</button> <button class="button" on-swipe-up="onSwipeUp()">onSwipeUp</button> <button class="button" onSwipeDown="onSwipeDown()">onSwipeDown</button> <button class="button" onSwipeUp="onSwipeRight()">onSwipeRight</button> <button class="button" onSwipeUp="onSwipeLeft()">onSwipeLeft</button> </body> </html>
运行结果