Ошибка main.js:1 Uncaught ReferenceError: ProgressBar is not defined
?
Запускаю то же самое в codepen и там всё нормально работает
var lineBar = new ProgressBar.Line("#progress-bar__line-container", {
strokeWidth: 4,
trailWidth: 0.5,
from: { color: "#FF9900" },
to: { color: "#00FF99" },
text: {
value: '0',
className: 'progress-text',
style: {
color: 'black',
position: 'absolute',
top: '-30px',
padding: 0,
margin: 0,
transform: null
}
},
step: (state, shape) => {
shape.path.setAttribute("stroke", state.color);
shape.setText(Math.round(shape.value() * 100) + ' %');
}
});
lineBar.animate(1, {
duration: 4000
});
#progress-bar__line-container {
margin: 0 auto;
width: 750px;
height: 40px;
}
.progress-text {
font-size: 1.25em;
color: black;
margin-bottom: 1em;
font-weight: 600;
}
<div id="progress-bar__line-container"></div>
Изначально в коде была подключена библиотека, поэтому в моём случае код не работал.
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Перевод документов на английский язык: Важность и ключевые аспекты
Хочу сделать такую же анимацию вращения с помощью CSS, но у меня получается она только в одну сторону