Сообщение от рони
|
можно код?
|
Таки да, просто смены идентифицирующего атрибута не достаточно, однако это не является какой-то проблемой.
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">p{height: 1000px;}</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-viewport-checker/1.8.8/jquery.viewportchecker.min.js"></script>
<script src="https://apollowebstudio.com/labs/js/sugarcrm-pm/js/radialIndicator.min.js"></script>
<script>
$(function(){
$('.indicatorContainer').each(function(index){
var $t=$(this);
$t.radialIndicator({
frameTime:120,
barColor: '#87CEEB',
barWidth: 7,
radius:90, // width of circle
initValue:40,
roundCorner:true,
percentage:true
});
$t.viewportChecker({
callbackFunction:function(elem,action){
$(elem).data('radialIndicator').animate(60);
}
});
});
});
</script>
</head>
<body>
<p></p>
<div class="indicatorContainer"></div>
<div class="indicatorContainer"></div>
<div class="indicatorContainer"></div>
<p></p>
</body>
</html>