v-ons-progress-bar

実例

Progress

There are two components for indicating progress: VOnsProgressBar and VOnsProgressCircular. As the names imply, the VOnsProgressBar displays a linear progress bar while the VOnsProgressCircular displays a circular progress indicator.

They have the ability to show the current progress or a looping animation in cases where the current progress is not known.

Both components implement the same props.

To change the progress the value property is used. It should be a value between 0 and 100.

<v-ons-progress-bar :value="currentProgress"></v-ons-progress-bar>
<v-ons-progress-circular :value="currentProgress" /></v-ons-progress-circular>

Secondary value

It is sometimes necessary to display two different values in the same progress indicator. An example could be an app that streams a video. The progress bar could show both how much of the video has elapsed in addition to how much of the video that has been buffered.

To do this the secondaryValue property can be used.

<v-ons-progress-bar
  :value="elapsed"
  :secondaryValue="buffered"
>
</v-ons-progress-bar>

Indeterminate mode

There is also an indeterminate property which makes the component ignore both the value and secondaryValue properties. Instead, it show a looping animation. This can be useful for cases where the total progress is unknown, e.g. when waiting for some data to arrive.

<v-ons-progress-bar indeterminate></v-ons-progress-bar>

関連情報

名前 型 / デフォルト値 概要
indeterminate Boolean この属性が設定された場合、ループするアニメーションが表示されます。 Optional.
modifier String プログレスインジケータの見た目を変更します。 Optional.
secondary-value Number 現在の2番目の進行状況の値を指定します。0から100の間の値を指定して下さい。 Optional.
value Number 現在の進行状況の値を指定します。0から100の間の値を指定して下さい。 Optional.
Name 概要
material マテリアルデザインのスタイルでプログレスバーを表示します。

お困りですか?

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

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

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