HTML5 brought with it many great features to front-end work on the internet in HTML, and today, we continue on from yesterdayโs HTML5 Meter Element Primer Tutorial as shown below, we talk about one of the newly introduced, and very useful, elements called โ<meter>โ. By the way, the โ<meter>โ element does not work with mobile Safari, for instance, and you can read more about this here.
As we outlined yesterday, at its core the โ<meter>โ element represents a โfraction of oneโ or perhaps you can think this as a โpercentage of one hundredโ, and, as youโd guess, a generic โxth of y for the fraction x/yโ idea โฆ where โyโ could be your โmaxโ parameter, and perhaps your โminโ parameter is zero. Today we extend that โfractionโ concept to being a โfractionโ of completion time, as a progress bar.
Progress bars appear all over the internet. Personally I love the ones that go backwards, just like those mileposts that increase as you head closer to a town. In defense of this occasional progress bar behaviour, it can be quite hard to predict when some jobs will finish โฆ suppose you base it on a file size โฆ but this may not take into account record sizes or intensity of calculation for particular data record types etcetera etcetera etcetera.
With our progress bar today we analyze the pixels of a user-defined image file and show a few of the most commonly occurring pixel colours appearing in that image (file) and present this as a (Google Chart) bar chart, that changes along with the progress bar โprogressingโ.
So take a look at the PHP code in image_bargraphphp, or a live
run, for your perusal. A useful PHP link for this was this one โฆ so, thanks. Hope it helps with a project idea you are mulling over now.
Stop Press: The next tutorial in our sequence called HTML5 Meter Element Word Count Tutorial led to some thinking causing changes to our code above which you can see with the image_bargraphphp link.
Previous relevant HTML5 Meter Element Primer Tutorial is shown below.
HTML5 brought with it many great features to front-end work on the internet in HTML, and today we talk about one of the newly introduced, and very useful, elements called โ<meter>โ.
At its core the โ<meter>โ element represents a โfraction of oneโ or perhaps you can think this as a โpercentage of one hundredโ, and, as youโd guess, a generic โxth of y for the fraction x/yโ idea โฆ where โyโ could be your โmaxโ parameter, and perhaps your โminโ parameter is zero.
This element is useful to represent a numerical concept graphically (like a ratio), something we do today with โฆ
- simulation of a stopwatch โฆ with its seconds, minutes, hours, days, years elapsed
- a fraction as (numerator) x / y (denominator)
Tomorrow weโll show you a very commonplace usage for โ<meter>โ as a โprogress barโ which you see so much of on the internet, when you are waiting for something.
So take a look at the HTML code in meterhtml, or a live
run, for your perusal. Hope it helps with an HTML project you are on now.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
25 Responses to HTML5 Meter Element Progress Bar Tutorial