I begin with jquery and I try to execute a function when my page position is seen.
Example with "http://www.jqueryscript.net/demo/Animated-Circle-Statistics-Plugin-With-jQuery-Canvas-Circliful/" :
<div id="myStat4" data-startdegree="180" data-dimension="250" data-text="35%" data-info="New Clients" data-width="30" data-fontsize="38" data-percent="35" data-fgcolor="#61a9dc" data-bgcolor="#eee"></div>
$(window).load(function() {
$('#myStat4').circliful();
}
But it doesn't work, pourcentage circle are already completed when I scroll to my section. Have you got an idea to realize this action ?
Thank you