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>
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>
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>
Name | 概要 |
---|---|
material | マテリアルデザインのスタイルでプログレスバーを表示します。 |
Onsen UIに関する質問は、Stack Overflowにてonsen-uiタグを付与してください。Onsen UIチームはあなたの問題解決をお手伝いします。
バグ報告や機能要望については、GitHub Issuesに記載をお願いいたします。
あわせて、下記の情報も参考にしてください。