0
我試圖用這段代碼將元素放置在隨機位置,但它只是將元素放置在我的容器元素的頂部。我究竟做錯了什麼?將元素放置在隨機位置
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';
},
實際上用'this.x'和'this.y'做些什麼的代碼在哪裏? –