Home  >  Article  >  Web Front-end  >  css3 achieves bar percentage effect

css3 achieves bar percentage effect

php中世界最好的语言
php中世界最好的语言Original
2018-03-14 11:10:044161browse

This time I will bring you css3 to achieve the bar percentage effect. What are the precautions to achieve the bar percentage effect in css3? The following is a practical case, let’s take a look.

css3 achieves bar percentage effect

The rendering is shown above. The entire bar represents 100%, and the green part represents the proportion of the item. When the mouse moves over the bar, the percentage is displayed. (title attribute setting)

First of all, you have to calculate this percentage.
I use Label to display this bar, just set its
background. What container to use is not fixed, it depends on your own layout needs, but one thing that is certain is that the width of the container must be set. Set the background
Color codeEnter: background:linear-gradient(to right, green 33.90%, #9e9e9e70 33.90%)
linear-gradient represents linear gradient, three Parameter settings, the first parameter is the direction to left:

Set the gradient from right to left. Equivalent to: 270deg

to right:
sets the gradient from left to right. Equivalent to: 90deg
to top:
Set the gradient from bottom to top. Equivalent to: 0deg
to bottom:
sets the gradient from top to bottom. Equivalent to: 180deg. This is the default value, which is equivalent to leaving it blank.

The following is the color setting. Obviously, for two colors, the color value is followed by the percentage of the color. The two percentages can be consistent, otherwise there will be a linear gradient of the two colors.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website

Other related articles!

Recommended reading:

Detailed explanation of css3 shadow

JavaScript array usage collection

Knowledge points of JavaScript that are easily overlooked

How to use canvas to draw the starry sky, moon, earth, and add text

The above is the detailed content of css3 achieves bar percentage effect. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn