Search code examples
phphtmlwidthcountdown

Php countdown, make the div change width for every day


Hey i have made a countdown, but what i want is a div that change width after the day. Let's say there is 150 days back to someday, then i want the div to be 150px in width. Is this possibel? I have seach all over the web.


Solution

  • it's simple. store start date and update div via counting difference with now. Every 150 days re-store start date. here's some pseudocode

    var start=17/01/2013 //stored date
    func countDifference(){
    return differenceIs=now()-start+1;
    }
    func setWidth(){
    div.width=countDifference();
    }