низкий
Parameters
Here is the list of accepted parameters and their effect on the progress bar. There are two ways of indicating the value (percentage) represented by the bar. The first method uses the progression
parameter, while the second uses the min
, max
and current
parameters. Whatever method you use, you can use the progression-text
parameter to display any text on the bar, or use the desc
parameter which writes down the percentage represented by the bar before the text contained in this parameter. See examples below.
- progression
- Indicates the percentage represented by the progression bar.
- ex:
74.2%
- default value:
0%
- ex:
- min
- Indicates the value of the lower bound of the range represented by this bar.
- ex:
10
- default value:
0
- note: if the
progression
parameter is used, themin
parameter is discarded.
- ex:
- max
- Indicates the value of the upper bound of the range represented by this bar.
- ex:
15
- default value:
100
- note: if the
progression
parameter is used, themax
parameter is discarded.
- ex:
- current
- Indicates the value of the position into the range represented by this bar. This number must be contained between
min
andmax
.- ex:
13
- default value:
0
- note: if the
progression
parameter is used, thecurrent
parameter is discarded.
- ex:
- progression-text
- Indicates the text written on the progression bar. If not specified, the text is determined automatically. See explanations below.
- ex:
People know me
- default value:
0%
- ex:
- title
- Indicates the text displayed in the tooltip. If not specified, the text is determined automatically. See explanations below.
- ex:
People know me
- default value:
0%
- ex:
- mode
- Indicates which of the percentage or the current value is to be displayed on the bar and the tooltip. Used only if the second method is used.
- specify
mode=value
to make the text display the value of thecurrent
parameter instead of the calculated percentage - to get the default behavior, simply don't use this parameter
- specify
- desc
- Indicates the text to be displayed on the bar behind the actual percentage represented by the bar.
- ex:
explored
- default value: none
- note: the
desc
parameter is overridden by theprogression-text
and thetitle
parameters respectively.
- ex:
- bar-background
- Color used as the background of the progression bar.
- ex:
red
or#328A9C
- default value:
#AAAAFF
- ex:
- box-background
- Color used as the background of the block in which the bar is located.
- ex:
red
or#328A9C
- default value:
white
- ex:
- box-border
- Style of the border of the block in which the bar is located.
- ex:
2px dotted red
- default value:
1px solid black
- ex:
- box-margin
- Indicates how far the block in which the bar is located must be from the text around it.
- ex:
5px
- default value:
1px
- ex:
- box-padding
- Indicates the width of the space between the progression bar and the border of the block around it.
- ex:
0
- default value:
1px
- ex:
- box-width
- Indicates the width of the block in which the bar is located.
- ex:
15em
- default value:
100%
- ex:
- text-color
- Color of the text written in the center of the bar.
- default value:
black
- default value:
- text-size
- Size of the text written in the center of the bar.
- default value:
small
- default value:
- text-weight
- Weight of the text written in the center of the bar.
- default value:
bold
- default value:
- box-style
- Any additional values inside the style="" attribute for the box. Values here overwrite default values.
- bar-style
- Any additional values inside the style="" attribute for the bar. Values here overwrite default values.