Canvas Rendering

Learning from AstroPlatformer

Code Runner Challenge

canvas-rendering

View IPYNB Source
%%js
// CODE_RUNNER: canvas-rendering

const el = document.createElement("div");
Object.assign(el.style, {position:"absolute",width:"100px",height:"12px",background:"#4a9eff"});
console.log("Element created:", el);

Lines: 1 Characters: 0
Output
Click "Run" in code control panel to see output ...