v-ons-action-sheet

アクションシート、もしくはボトムシートを現在のスクリーン上に表示します。 この要素は、<body>要素に直接アタッチされるか、もしくは$ons.createElement(template, { append: true })<template>タグを使ってテンプレートから動的に生成されます。 アクションシートは、選択肢のリストを表示してユーザーに尋ねるのに便利です。ons-action-sheet-buttonは、この要素の中に置くために提供されていますが、それ以外にも他のどのような要素を含むことができます。 Androidデバイスで実行されるときには、自動的にマテリアルデザイン(ボトムシート)として表示されます。

実例

Static action sheet

Onsen UI provides <v-ons-action-sheet> and <v-ons-action-sheet-button> elements. Use them to create a dialog that slides from the bottom of the screen to give user options.

You can display or cancel the action sheet by changing its visible prop value to true or false respectively.

Dynamic action sheet

You can also create and open an action sheet dynamically with the method $ons.openActionSheet.

This method takes as argument an object where you can define the action sheet’s properties (e.g. id, title) and the buttons inside it.

関連情報

名前 型 / デフォルト値 概要
cancelable Boolean この属性が設定されると、アクションシートの背景やAndroidデバイスのバックボタンを推すことでアクションシートが閉じるようになります。 Optional.
disabled Boolean この属性がある時、ダイアログはdisabled状態になります。 Optional.
mask-color String 背景のマスクの色を指定します。”rgba(0, 0, 0, 0.2)”がデフォルト値です。 Optional.
modifier String ダイアログの表現を指定します。 Optional.
options.animation String ダイアログを表示する際のアニメーション名を指定します。”none”もしくは”default”を指定できます。 Optional.
options.animationOptions Expression アニメーション時のduration, timing, delayをオブジェクトリテラルで指定します。e.g. {duration: 0.2, delay: 1, timing: 'ease-in'} Optional.
title String アクションシートのタイトルを指定します。ここで指定した文字列を含む新しい要素が作成されます。 Optional.
visible Boolean 要素が見える場合にtrueOptional.
visible Boolean Specify the visibility of the component. (翻訳中) Optional.
Name 概要
material マテリアルデザインのボトムシートを表示します。
名前 概要
preshow ダイアログが表示される直前に発火します。
postshow ダイアログが表示された直後に発火します。
prehide ダイアログが隠れる直前に発火します。
posthide ダイアログが隠れた後に発火します。
dialogcancel Fired when the action sheet is canceled. (翻訳中)
preshow

ダイアログが表示される直前に発火します。

パラメーター
名前 概要
event Object Event object.
event.actionSheet Object コンポーネントのオブジェクト。
event.cancel Function この関数を実行すると、ダイアログの表示がキャンセルされます。
postshow

ダイアログが表示された直後に発火します。

パラメーター
名前 概要
event Object Event object.
event.actionSheet Object コンポーネントのオブジェクト。
prehide

ダイアログが隠れる直前に発火します。

パラメーター
名前 概要
event Object Event object.
event.actionSheet Object コンポーネントのオブジェクト。
event.cancel Function この関数を実行すると、ダイアログの非表示がキャンセルされます。
posthide

ダイアログが隠れた後に発火します。

パラメーター
名前 概要
event Object Event object.
event.actionSheet Object コンポーネントのオブジェクト。
dialogcancel

Fired when the action sheet is canceled. (翻訳中)

パラメーター
名前 概要

お困りですか?

Onsen UIに関する質問は、Stack Overflowにてonsen-uiタグを付与してください。Onsen UIチームはあなたの問題解決をお手伝いします。

バグ報告や機能要望については、GitHub Issuesに記載をお願いいたします。

あわせて、下記の情報も参考にしてください。