JQuery Circular Progress Bar not showing up

jake_lue
Shopify Partner
38 1 6

Hey guys, why this thing not showing? see it here

<style>

.cont .chart {
position: relative;
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid #98fb98;
}

.cont canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
}

</style>

 
<div class="cont">
<div class="chart" data-percent="{{section.settings.home-kickstarter-percent}}"></div>
</div>
 
<script>
  $(document).ready(function() {
  $(function(){
      $(".chart").easyPieChart({
        size: 60,
        barColor: "#36e617",
        scaleLength: 0,
        lineWidth: 5,
        trackColor: "#525151",
        lineCap: "circle",
        animate: 2000
      })
    });
  });
</script>

 

Replies 0 (0)