2015-11-29 259 views
0

我是新來的,當我的圖表在頁面加載時自動啓動,所以我的問題是如何延遲動畫,直到它變成視圖端口,這是什麼代碼,也是在哪裏準確地把它放在chart.js?延遲動畫chart.js

謝謝。

+0

看看這個問題 - http://stackoverflow.com/q/33356826/360067 – potatopeelings

+0

是的,我看到了這一點,但是因爲我提到了我的JS技能,所以我只能在chart.js中使用此代碼(或下面)來使其工作。 – wessam

回答

1

您首先需要安裝:chartjs-插件遞延here 然後添加到您的項目

plugins: { 
    deferred: {   // enabled by default 
     xOffset: 150,  // defer until 150px of the canvas width are inside the viewport 
     yOffset: '50%', // defer until 50% of the canvas height are inside the viewport 
     delay: 500  // delay of 500 ms after the canvas is considered inside the viewport 
    } 
}