Skip to main content
Version: v5

ion-loading

An overlay that can be used to indicate activity while blocking user interaction. The loading indicator appears on top of the app's content, and can be dismissed by the app to resume user interaction with the app. It includes an optional backdrop, which can be disabled by setting showBackdrop: false upon creation.

Dismissing

The loading indicator can be dismissed automatically after a specific amount of time by passing the number of milliseconds to display it in the duration of the loading options. To dismiss the loading indicator after creation, call the dismiss() method on the loading instance. The onDidDismiss function can be called to perform an action after the loading indicator is dismissed.

Customization

Loading uses scoped encapsulation, which means it will automatically scope its CSS by appending each of the styles with an additional class at runtime. Overriding scoped selectors in CSS requires a higher specificity selector.

We recommend passing a custom class to cssClass in the create method and using that to add custom styles to the host and inner elements. This property can also accept multiple classes separated by spaces. View the Usage section for an example of how to pass a class using cssClass.

/* DOES NOT WORK - not specific enough */
ion-loading {
color: green;
}

/* Works - pass "my-custom-class" in cssClass to increase specificity */
.my-custom-class {
color: green;
}

Any of the defined CSS Custom Properties can be used to style the Loading without needing to target individual elements:

.my-custom-class {
--background: #222;
--spinner-color: #fff;

color: #fff;
}

If you are building an Ionic Angular app, the styles need to be added to a global stylesheet file. Read Style Placement in the Angular section below for more information.

Usage

import { Component } from '@angular/core';
import { LoadingController } from '@ionic/angular';

@Component({
selector: 'loading-example',
templateUrl: 'loading-example.html',
styleUrls: ['./loading-example.css'],
})
export class LoadingExample {
constructor(public loadingController: LoadingController) {}

async presentLoading() {
const loading = await this.loadingController.create({
cssClass: 'my-custom-class',
message: 'Please wait...',
duration: 2000,
});
await loading.present();

const { role, data } = await loading.onDidDismiss();
console.log('Loading dismissed!');
}

async presentLoadingWithOptions() {
const loading = await this.loadingController.create({
spinner: null,
duration: 5000,
message: 'Click the backdrop to dismiss early...',
translucent: true,
cssClass: 'custom-class custom-loading',
backdropDismiss: true,
});
await loading.present();

const { role, data } = await loading.onDidDismiss();
console.log('Loading dismissed with role:', role);
}
}

Style Placement

In Angular, the CSS of a specific page is scoped only to elements of that page. Even though the Loading can be presented from within a page, the ion-loading element is appended outside of the current page. This means that any custom styles need to go in a global stylesheet file. In an Ionic Angular starter this can be the src/global.scss file or you can register a new global style file by adding to the styles build option in angular.json.

Properties

animated

Descriptiontrueの場合、ロードインジケータをアニメーションで表示します。
Attributeanimated
Typeboolean
Defaulttrue

backdropDismiss

Descriptiontrueの場合、バックドロップがクリックされたときにローディングインジケータが解除される。
Attributebackdrop-dismiss
Typeboolean
Defaultfalse

cssClass

DescriptionAdditional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
Attributecss-class
Typestring | string[] | undefined
Defaultundefined

duration

Descriptionローディングインジケータを解除するまでの待ち時間(ミリ秒)。
Attributeduration
Typenumber
Default0

enterAnimation

Descriptionローディングインジケータが表示されたときに使用するアニメーションです。
Attributeundefined
Type((baseEl: any, opts?: any) => Animation) | undefined
Defaultundefined

htmlAttributes

Descriptionローダーに渡す追加属性。
Attributeundefined
TypeLoadingAttributes | undefined
Defaultundefined

keyboardClose

Descriptiontrueの場合、オーバーレイが表示されたときにキーボードが自動的に解除されます。
Attributekeyboard-close
Typeboolean
Defaulttrue

leaveAnimation

Descriptionローディングインジケータが解除されたときに使用するアニメーションです。
Attributeundefined
Type((baseEl: any, opts?: any) => Animation) | undefined
Defaultundefined

message

Descriptionロードインジケータに表示するテキストコンテンツは任意です。
Attributemessage
TypeIonicSafeString | string | undefined
Defaultundefined

mode

Descriptionmodeは、どのプラットフォームのスタイルを使用するかを決定します。
Attributemode
Type"ios" | "md"
Defaultundefined

showBackdrop

Descriptiontrueの場合、ロードインジケータの後ろにバックドロップが表示されます。
Attributeshow-backdrop
Typeboolean
Defaulttrue

spinner

Description表示するスピナーの名前。
Attributespinner
Type"bubbles" | "circles" | "circular" | "crescent" | "dots" | "lines" | "lines-small" | null | undefined
Defaultundefined

translucent

DescriptionIf true, the loading indicator will be translucent. Only applies when the mode is "ios" and the device supports backdrop-filter.
Attributetranslucent
Typeboolean
Defaultfalse

Events

NameDescription
ionLoadingDidDismissローディングが解除された後に発行されます。
ionLoadingDidPresentローディングが提示された後に発行されます。
ionLoadingWillDismissローディングが解除される前に発行されます。
ionLoadingWillPresentローディングが提示される前に発行されます。

Methods

dismiss

Descriptionローディングオーバーレイが提示された後、それを解除します。
Signaturedismiss(data?: any, role?: string | undefined) => Promise<boolean>

onDidDismiss

Descriptionローディングが解除されたタイミングを解決するPromiseを返します。
SignatureonDidDismiss<T = any>() => Promise<OverlayEventDetail<T>>

onWillDismiss

Descriptionローディングが解除されるタイミングを解決するPromiseを返します。
SignatureonWillDismiss<T = any>() => Promise<OverlayEventDetail<T>>

present

Description作成後のローディングオーバーレイを提示します。
Signaturepresent() => Promise<void>

CSS Shadow Parts

No CSS shadow parts available for this component.

CSS Custom Properties

NameDescription
--backdrop-opacity背景の不透明度
--backgroundローディングダイアログの背景
--heightローディングダイアログの高さ
--max-heightローディングダイアログの最大の高さ
--max-widthローディングダイアログの最大幅
--min-heightローディングダイアログの最小高さ
--min-widthローディングダイアログの最小幅
--spinner-colorローディングスピナーの色
--widthローディングダイアログの幅

Slots

No slots available for this component.

View Source