wimbarelds / TimeCircles

jQuery plugin to show time since or time until a specific time
295 stars 149 forks source link

words in the circle responsive #60

Closed yuhao-nyc closed 10 years ago

yuhao-nyc commented 10 years ago

Hi, if there is a way to make the words within circles responsive, e.g Hours, Minutes, Seconds. Not just stay the same font size forever.

wimbarelds commented 10 years ago

The font size automatically adjusts to the size of the circles, if that's not what you mean, can you elaborate that?

yuhao-nyc commented 10 years ago

I don't think font size changes automatically in my script, i don't know if its the newest changes? in my time circles, the words stays all the same all along whenever i re size the screen size.

wimbarelds commented 10 years ago

If you want it to change as the window changes, you need to call the rebuild function so that the HTML gets recreated.

Try:

$(window).resize(function(){
    $('#MyTimer').TimeCircles().rebuild();
});