https://jsfiddle.net/kimmobrunfeldt/sqwdkrg0/
<script src="js/progressbar.js"></script>
<script>
var bar = new ProgressBar.SemiCircle('#progress1', {
strokeWidth: 6,
color: '#FFEA82',
trailColor: '#eee',
trailWidth: 1,
easing: 'easeInOut',
duration: 1400,
svgStyle: null,
text: {
value: '',
alignToBottom: true
},
from: {color: '#FFEA82'},
to: {color: '#ED6A5A'},
// Set default step function for all animate calls
step: (state, bar) => {
bar.path.setAttribute('stroke', state.color);
var value = Math.round(bar.value() * 100);
if (value === 0) {
bar.setText('');
} else {
bar.setText(value);
}
bar.text.style.color = state.color;
}
});
bar.text.style.fontSize = '1.5rem';
/*bar.animate(1.0);*/ // Number from 0.0 to 1.0
</script>
'javascript' 카테고리의 다른 글
kakao 지도 api (주소로 마커 생성 + 클릭한 위치 좌표 출력) (0) | 2020.04.17 |
---|---|
kakao 지도 api (마커 + 컨트롤 추가) (0) | 2020.04.17 |
[bootstrap.js] multiple modals에서 modal-backdrop 수정하기 (1) | 2020.04.13 |
체크박스 체크 했을 때 이벤트 checked (0) | 2020.04.10 |
[bootstrap] multiple selected 선택 n개 이상일 때, 전체일 때 (0) | 2020.04.08 |
댓글