progress
Interactive progress bar
Code demo
xml
<r-progress type="drag" ></r-progress>
Attribute
total
Set progress bar Total progress, allowed percentages and numbers.
html
<r-progress percent="30" total="1000"></r-progress>
<r-progress percent="70" total="100"></r-progress>
<r-progress percent="10%" total="100%"></r-progress>
percent
Set the current progress of the progress bar, you can set the percentage and number, 'percent' cannot exceed 'total'. If 'total' is not set, the default 'total' is' 100% ', that is, '1'.
html
<r-progress type="primary" percent="30%"></r-progress>
<r-progress type="primary" percent="40%"></r-progress>
<r-progress type="primary" percent="100%"></r-progress>
dot
Point of the progress bar, Default display, set to 'false' can be hidden
html
<r-progress type="drag" percent="30%" dot="false"></r-progress>
<r-progress type="primary" percent="40%" dot="true"></r-progress>
<r-progress type="primary" percent="40%"></r-progress>
type
primary
: Default progress bar, not setting the 'type' attribute is the defaultdrag
: Draggable, clickable progress bar (dragging requires' dot 'to be' true ')
html
<r-progress type="drag" percent="30%"></r-progress> <r-progress type="primary" percent="40%"></r-progress>
Method
change
The 'change' event is triggered when the 'percent' and 'total' properties change.
property | explains that | type |
---|---|---|
value | Current progress | 'string or number' |
percent | Current progress | 'string or number' |
total | Total progress | 'string or number' |