Я включил спиннер в свой код JavaScript, указанный с https://spin.js.org/, и получаю сообщение об ошибке -
Ошибка: не удалось выполнить 'appendChild' для 'Node': параметр1 не относится к типу «Узел»
Код:
app.js
render() {
var opts = {
lines: 13, // The number of lines to draw
length: 38, // The length of each line
width: 17, // The line thickness
radius: 45, // The radius of the inner circle
scale: 1, // Scales overall size of the spinner
corners: 1, // Corner roundness (0..1)
color: '#5229cc', // CSS color or array of colors
//more
};
var target = document.getElementById('viz');
// var spinner = new Spinner(opts).spin(target);
var spinner = new Spinner().spin();
target.appendChild(spinner.el);
//code
},
onCompleted: function () {
var target = document.getElementById('viz');
var spinner = new Spinner().stop();
target.appendChild(spinner.el);
session.close();
//code
};