我正在尝试使用此代码将元素放置在随机位置,但它只是将元素放置在容器元素的顶部。我究竟做错了什么?
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';
},