scrimba
PRIMM #2
Presentere kode
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Presentere kode
AboutCommentsNotes
Presentere kode
Expand for more info
index.js
run
preview
console
// javascript

const main = document.querySelector("main");

for(let i=0; i<3; i++) {

const rotasjon = i * 120 + "deg";
const avstand = 34 + "px";

main.innerHTML += `
<div
style="transform: rotate(${rotasjon}) translateY(${avstand})">
</div>
`;
}




Console
index.html
-0:57