ionic 上拉菜單(ActionSheet)實(shí)例代碼
上拉菜單(ActionSheet)通過(guò)往上彈出的框,來(lái)讓用戶(hù)選擇選項(xiàng)。
非常危險(xiǎn)的選項(xiàng)會(huì)以高亮的紅色來(lái)讓人第一時(shí)間識(shí)別。你可以通過(guò)點(diǎn)擊取消按鈕或者點(diǎn)擊空白的地方來(lái)讓它消失。
實(shí)例
HTML 代碼
<body ng-app="starter" ng-controller="actionsheetCtl" > <ion-pane> <ion-content > <h2 ng-click="show()">Action Sheet</h2> </ion-content> </ion-pane> </body>
JavaScript 代碼
在代碼中觸發(fā)上拉菜單,需要在你的 angular 控制器中使用 $ionicActionSheet 服務(wù):
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','$ionicActionSheet','$timeout' ,function($scope,$ionicActionSheet,$timeout){ $scope.show = function() { var hideSheet = $ionicActionSheet.show({ buttons: [ { text: '<b>Share</b> This' }, { text: 'Move' } ], destructiveText: 'Delete', titleText: 'Modify your album', cancelText: 'Cancel', cancel: function() { // add cancel code.. }, buttonClicked: function(index) { return true; } }); $timeout(function() { hideSheet(); }, 2000); }; }])
運(yùn)行效果如下圖:
完整源碼:
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title></title> <link rel="stylesheet"> <script src="http://cdn.bootcss.com/ionic/1.3.1/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','$ionicActionSheet','$timeout' ,function($scope,$ionicActionSheet,$timeout){ $scope.show = function() { var hideSheet = $ionicActionSheet.show({ buttons: [ { text: '<b>Share</b> This' }, { text: 'Move' } ], destructiveText: 'Delete', titleText: 'Modify your album', cancelText: 'Cancel', cancel: function() { // add cancel code.. }, buttonClicked: function(index) { return true; } }); $timeout(function() { hideSheet(); }, 2000); }; }]) </script> </head> <body ng-app="starter" ng-controller="actionsheetCtl" > <ion-pane> <ion-content > <h2 ng-click="show()">Action Sheet</h2> </ion-content> </ion-pane> </body> </html>
以上所述是小編給大家介紹的ionic 上拉菜單(ActionSheet)實(shí)例代碼的相關(guān)知識(shí),希望對(duì)大家有所幫助!
- IONIC自定義subheader的最佳解決方案
- ionic在開(kāi)發(fā)ios系統(tǒng)微信時(shí)鍵盤(pán)擋住輸入框的解決方法(鍵盤(pán)彈出問(wèn)題)
- ionic實(shí)現(xiàn)可滑動(dòng)的tab選項(xiàng)卡切換效果
- Ionic實(shí)現(xiàn)頁(yè)面下拉刷新(ion-refresher)功能代碼
- Ionic如何創(chuàng)建APP項(xiàng)目
- Ionic快速安裝教程
- Ionic如何實(shí)現(xiàn)下拉刷新與上拉加載功能
- ionic由于使用了header和subheader導(dǎo)致被遮擋的問(wèn)題的兩種解決方法
相關(guān)文章
JavaScript常見(jiàn)手寫(xiě)題超全匯總
作為前端開(kāi)發(fā),JS是重中之重,下面這篇文章主要給大家介紹了關(guān)于JavaScript常見(jiàn)手寫(xiě)題的相關(guān)資料,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2022-12-12JavaScript使用canvas實(shí)現(xiàn)手寫(xiě)簽名功能
最近遇到一個(gè)h5手寫(xiě)簽名的需求,按理說(shuō)這種功能網(wǎng)上隨便一搜一大把現(xiàn)成的源碼和組件,但是像這種比較經(jīng)典又很簡(jiǎn)單的功能,還是要弄清楚到底怎么實(shí)現(xiàn)的,所以接下來(lái)本文就給大家介紹一下如何用canvas實(shí)現(xiàn)手寫(xiě)簽名功能2023-08-08用javascript 控制表格行的展開(kāi)和隱藏的代碼
用javascript 控制表格行的展開(kāi)和隱藏的代碼...2007-08-08