このコードで要素をランダムな位置に配置しようとしていますが、要素をコンテナー要素の上に配置するだけです。私は何を間違っていますか?
create: function(){
console.log("cone created");
var el = document.createElement('div');
el.classList.add('cone');
this.container.appendChild(el);
this.el = el;
this.x = Math.random () * canvas.innerWidth + 'px';
this.y = Math.random () * canvas.innerHeight + 'px';
},