blob: 95aa1e190c9cccd347f3591b71d318a931653a02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<style>
@keyframes anim {
from { background-color: rgba(0, 0, 0, 0); }
to { background-color: rgba(255, 0, 0, 255); }
}
body {
animation: anim 100s;
width: 100vw;
height: 100vh;
}
</style>
|