scrimba
Kodekurs for ungdoms- og videregående skoler
Lær JavaScript
Egenoppgave 2 i JavaScript: Animasjon
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

Egenoppgave 2 i JavaScript: Animasjon
AboutCommentsNotes
Egenoppgave 2 i JavaScript: Animasjon
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>

<main>
<div id="boet">
<div id="blue"></div>
<div id="white"></div>
<div id="red"></div>
<div id="white_inner"></div>
</div>

<div id="stein01" class="stein"></div>
<div id="stein02" class="stein"></div>
</main>

<script src="index.js"></script>
</body>
</html>
Console
index.html
-1:49