源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>菜鸟教程(runoob.com)</title> <link href="https://cdn.staticfile.net/ionic/1.3.2/css/ionic.css" rel="stylesheet"> <script src="https://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 on-swipe="onSwipe()" class="button">onSwipe</button> <button on-swipe-up="onSwipeUp()" class="button">onSwipeUp</button> <button onSwipeDown="onSwipeDown()" class="button">onSwipeDown</button> <button onSwipeUp="onSwipeRight()" class="button">onSwipeRight</button> <button onSwipeUp="onSwipeLeft()" class="button">onSwipeLeft</button> </body> </html>
运行结果: