Ionic4.x Javascript 扩展 ActionSheet Alert Toast Loading 以及 ionic 手势相 关事件
1、ActionSheet 官方文档:https://ionicframework.com/docs/api/action-sheet
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="/tabs/tab1"></ion-back-button>
</ion-buttons>
<ion-title>actionsheet</ion-title>
</ion-toolbar>
</ion-header> <ion-content padding> <ion-button (click)="showAction()">
弹出actionSheet
</ion-button>
</ion-content>
import { Component, OnInit } from '@angular/core';
import { ActionSheetController } from '@ionic/angular';
@Component({
selector: 'app-actionsheet',
templateUrl: './actionsheet.page.html',
styleUrls: ['./actionsheet.page.scss'],
})
export class ActionsheetPage implements OnInit {
constructor(public actionSheetController: ActionSheetController) {}
ngOnInit() {
}
async showAction(){
const actionSheet = await this.actionSheetController.create({
header: '我是actionsheet的标题',
mode:'ios', /*修改action的平台*/
buttons: [{
text: '删除',
role: 'destructive',
icon: 'trash',
handler: () => {
console.log('Delete clicked');
}
}, {
text: '分享',
icon: 'share',
handler: () => {
console.log('Share clicked');
}
}, {
text: '收藏',
icon: 'heart',
handler: () => {
console.log('Favorite clicked');
}
}, {
text: '取消',
role: 'cancel',
handler: () => {
console.log('Cancel clicked');
}
}]
});
await actionSheet.present();
}
}
2、Alert 官方文档:https://ionicframework.com/docs/api/alert
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="/tabs/tab1"></ion-back-button>
</ion-buttons>
<ion-title>alert</ion-title>
</ion-toolbar>
</ion-header>
<ion-content padding>
<ion-button (click)="presentAlert()">
presentAlert
</ion-button>
<ion-button (click)="presentAlertMultipleButtons()">
确定要删除吗
</ion-button>
<ion-button (click)="presentAlertPrompt()">
alert放表单
</ion-button>
</ion-content>
import { Component, OnInit } from '@angular/core';
import { AlertController } from '@ionic/angular';
@Component({
selector: 'app-alert',
templateUrl: './alert.page.html',
styleUrls: ['./alert.page.scss'],
})
export class AlertPage implements OnInit {
constructor(public alertController: AlertController) {}
ngOnInit() {
}
async presentAlert() {
const alert = await this.alertController.create({
header: '提示信息',
message: '你已经支付成功了...',
buttons: ['确认']
});
await alert.present();
}
async presentAlertMultipleButtons() {
const alert = await this.alertController.create({
header: '提示信息!',
message: '您确定要删除吗?',
buttons: [
{
text: '取消',
role: 'cancel',
cssClass: 'secondary', //注意自定义class写在全局
handler: (blah) => {
console.log('Confirm Cancel: blah');
}
}, {
text: '确定',
handler: () => {
console.log('Confirm Okay');
}
}
]
});
await alert.present();
}
async presentAlertPrompt() {
const alert = await this.alertController.create({
header: 'Prompt!',
inputs: [
{
name: 'name1',
type: 'text',
placeholder: 'Placeholder 1'
},
{
name: 'name2',
type: 'text',
id: 'name2-id',
value: 'hello',
placeholder: 'Placeholder 2'
},
{
name: 'name3',
value: 'http://ionicframework.com',
type: 'url',
placeholder: 'Favorite site ever'
},
// input date with min & max
{
name: 'name4',
type: 'date',
min: '2017-03-01',
max: '2018-01-12'
},
// input date without min nor max
{
name: 'name5',
type: 'date'
},
{
name: 'name6',
type: 'number',
min: -5,
max: 10
},
{
name: 'name7',
type: 'number'
}
],
buttons: [
{
text: 'Cancel',
role: 'cancel',
cssClass: 'secondary',
handler: () => {
console.log('Confirm Cancel');
}
}, {
text: 'Ok',
handler: (result) => { //获取表单输入的值
console.log(result);
}
}
]
});
await alert.present();
}
}
3、Toast 官方文档:https://ionicframework.com/docs/api/toast
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="/tabs/tab1"></ion-back-button>
</ion-buttons>
<ion-title>toast</ion-title>
</ion-toolbar>
</ion-header> <ion-content padding> <ion-button (click)="presentToast()">
presentToast
</ion-button> <ion-button (click)="presentToastWithOptions()">
presentToastWithOptions
</ion-button> </ion-content>
import { Component, OnInit } from '@angular/core';
import { ToastController } from '@ionic/angular';
@Component({
selector: 'app-toast',
templateUrl: './toast.page.html',
styleUrls: ['./toast.page.scss'],
})
export class ToastPage implements OnInit {
constructor(public toastController: ToastController) {}
ngOnInit() {
}
async presentToast() {
const toast = await this.toastController.create({
message: '登录成功',
duration: 2000,
position: 'middle',
color:'dark',
cssClass:'mytoast' /*cssClass必须写在全局*/
});
toast.present();
}
async presentToastWithOptions() {
const toast = await this.toastController.create({
message: 'Click to Close',
showCloseButton: true,
position: 'top',
closeButtonText: 'Done'
});
toast.present();
}
}
4、Loading 官方文档:https://ionicframework.com/docs/api/loading
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="/tabs/tab1"></ion-back-button>
</ion-buttons>
<ion-title>loading</ion-title>
</ion-toolbar>
</ion-header> <ion-content padding> <ion-button (click)="presentLoading()">
presentLoading
</ion-button> <ion-button (click)="presentLoadingWithOptions()">
presentLoadingWithOptions
</ion-button>
</ion-content>
import { Component, OnInit } from '@angular/core';
import { LoadingController } from '@ionic/angular';
@Component({
selector: 'app-loading',
templateUrl: './loading.page.html',
styleUrls: ['./loading.page.scss'],
})
export class LoadingPage implements OnInit {
constructor(public loadingController: LoadingController) {}
ngOnInit() {
}
async presentLoading() {
const loading = await this.loadingController.create({
message: '加载中...',
duration: 5000
});
await loading.present();
//事件
await loading.onDidDismiss();
// console.log({ role, data });
console.log('Loading dismissed!');
}
async presentLoadingWithOptions() {
const loading = await this.loadingController.create({
// spinner: null,
duration: 5000, //延迟时间
message: '请等待...',
translucent: true, //半透明的
cssClass: 'custom-class custom-loading' //注意自定义样式要写在全局
});
return await loading.present();
}
}
5、Ionic4 手势相关事件
详情参考:http://www.ionic.wang/article-index-id-155.html 1、首先需要安装 hammerjs
ionic4 中的 gestures 手势事件包括: tap, press, pan, swipe, rotate, and pinch events 等。详细使用方法参考:
详情参考:http://www.ionic.wang/article-index-id-155.html
1、首先需要安装 hammerjs
npm install hammerjs --save
2、在项目的 src/main.ts 中引入 hammerjs
import 'hammerjs';
3、在项目中使用
<ion-button (press)="doPress()">
长按触发的事件
</ion-button>
<ion-button (tap)="doTap()">
点击触发的事件
</ion-button>
说明:如果未来的 ionic4.x 版本可以直接使用手势事件的话忽略上面的安装引入过程。
<ion-header>
<ion-toolbar>
<ion-title>gestures</ion-title>
</ion-toolbar>
</ion-header> <ion-content padding> <ion-button (tap)="doTap()">
点击事件
</ion-button> <ion-button (press)="doPress()">
长按事件
</ion-button> <ion-list>
<ion-item>
<ion-label (press)="doPress()">衣服</ion-label>
</ion-item>
<ion-item>
<ion-label (press)="doPress()">鞋子</ion-label>
</ion-item> <ion-item>
<ion-label (press)="doPress()">女装</ion-label>
</ion-item>
</ion-list>
</ion-content>
import { Component, OnInit } from '@angular/core';
import { AlertController } from '@ionic/angular';
@Component({
selector: 'app-gestures',
templateUrl: './gestures.page.html',
styleUrls: ['./gestures.page.scss'],
})
export class GesturesPage implements OnInit {
constructor(public alertController: AlertController) {}
ngOnInit() {
}
doTap(){
console.log('tap tap ...')
}
async doPress(){
const alert = await this.alertController.create({
backdropDismiss:false,
header: '提示',
message: '确定要删除吗!',
buttons: [
{
text: '取消',
role: 'cancel',
cssClass: 'secondary',
handler: (blah) => {
console.log('Confirm Cancel: blah');
}
}, {
text: '确定',
handler: () => {
console.log('Confirm Okay');
}
}
]
});
await alert.present();
}
}



Ionic4.x Javascript 扩展 ActionSheet Alert Toast Loading 以及 ionic 手势相 关事件的更多相关文章
- iOS Webview 实现修改javascript confirm 和 alert
贴代码: @interface UIWebView (JavaScriptAlert) -(void) webView:(UIWebView *)sender runJavaScriptAlertPa ...
- Bootstrap Modal 框 alert confirm loading
/** * Created by Administrator on 2016/5/4. */ /** * 模态窗口 */ window.Modal = { tpls:{ alert:'<div ...
- 扩展javascript扩展(类,对象,原型)
扩展javascript扩展(类,对象,原型)
- Web前端——JavaScript扩展补充
JS补充 document也是windows的一个子对象 a标签点击事件 要想设置点击a标签,执行某种方法,推荐在a标签的herf属性使用JavaScript伪协议,实现点击之后执行的js方法,而不是 ...
- JavaScript扩展原型链浅析
前言 上文对原型和原型链做了一些简单的概念介绍和解析,本文将浅析一些原型链的扩展. javaScript原型和原型链 http://lewyon.xyz/prototype.html 扩展原型链 使用 ...
- vue中alert toast confirm loading 公用
import Vue from 'vue' import { ToastPlugin, AlertPlugin, ConfirmPlugin, LoadingPlugin } from 'vux' / ...
- Javascript扩展String.prototype实现格式金额、格式时间、字符串连接、计算长度、是否包含、日期计算等功能
<script src="Js/jquery-3.1.1.min.js"></script> <script type="text/java ...
- JavaScript 扩展运算符
扩展运算符格式扩展运算符格式很简单,就是三个点(...) 扩展运算符作用???扩展运算符允许一个表达式在期望多个参数(用于函数调用)或多个元素(用于数组字面量)或多个变量(用于解构赋值)的位置扩展. ...
- JavaScript实现自定义alert弹框
aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAAAh0AAAFkCAYAAACEpYlzAAAfj0lEQVR4nO3dC5BddZ0n8F93pxOQCO
随机推荐
- css详解2
1.伪类选择器 1.1.a标签的爱恨准则 LoVe HAte .一个冒号连接 1.2.a标签的示例 给a标签设置个颜色,生效了 <html lang="en"> < ...
- Mongodb创建用户Error: couldn’t add user: Use of SCRAM-SHA-256 requires undigested passwords
解决方案:修改mechanisms加密方式为SCRAM-SHA-1 db.createUser({ user: "admin", pwd: "xxx", rol ...
- 基于Java+Selenium的WebUI自动化测试框架(二)-----页面操作接口
在有了基础的Position类之后,我们需要考虑我们在寻找完页面元素之后,需要做什么.这个“做”什么,可以理解为我们在页面上需要对应的一系列动作.比如:点击,输入,切换窗口,寻找元素,判断元素是否存在 ...
- zstu月赛 招生
题目 浙江理工大学招生,一开始有0名学生报考,现在有如下几种情况: 1.增加一名报考学生,报考学生成绩为x: 2.一名成绩为x的学生放弃报考. 3.从现在报考的学生来看,老师想知道如果要招生至少x名学 ...
- windows程序意外关闭子订重启脚本
window程序意外关闭自动重启脚本实现 @echo off :1 tasklist|find /i "xxxx"||start yyyy ping/n 11 127.1> ...
- vue tslint报错: Calls to 'console.log' are not allowed
使用Vue CLI 3 的 vue create 创建vue+ts 项目,使用默认配置, 控制台报警告Calls to 'console.log' are not allowed,解决: 在tslin ...
- Codeforces 380E Sereja and Dividing
题面 洛谷传送门 题解 博客 有精度要求所以只用求几十次就差不多了 CODE #include <bits/stdc++.h> using namespace std; typedef l ...
- 如何使用python内置的request发送JSON格式的数据
使用步骤如下: 一.如果想发送json格式的数据,需要使用request模块中的Request类来创建对象,作为urlopen函数的参数 二.header中添加content-type为applica ...
- 微信小程序学习记录(一)
如何定义一个全局变量: 1,在根目录下app.js中添加 App({ globalData: { g_isPlayingMusic : false, g_currentMusicPostId :nul ...
- myeclipse2018大括号之前会自动加空格