javascript common-custom draw on html body
xxxxxxxxxx
const container = document.createElement('DIV');
function draw(){
for(o=0;o<59;o++){
container.innerHTML+='<span id="o'+o+'" style="position:absolute;">•</span>';
}
document.body.appendChild(container);
for(o=0;o<59;o++){
eval('o'+o).style.left= ((o)/32)*120+180+"px";
eval('o'+o).style.top= Math.sin((o+90)/9.4)*120+180+"px";
}
}draw();