Animated line graph in Javascript?

后端 未结 7 1817
孤街浪徒
孤街浪徒 2021-02-02 17:26

I\'d like to do a line-graph on a web-page using Javascript. I want it to be animated so that when the page loads, the line is slowly \"drawn\" onto the graph.

I\'ve ma

7条回答
  •  心在旅途
    2021-02-02 18:06

    Thinking outside the box (since the box that is flot is unfamiliar to me), you could just cover the graph with a div which slow recedes and displays the line. Shrinking a div in javascript is a trivial task even without third party libraries.

    Edit:

    I had to see how easy it was, so I threw this together in about 10 mins.

    
    
    
    
    
    
    color:white;border:solid 1px blue;top:70px;left:70px;">

提交回复
热议问题