blob: abba4de3b50b000e0c6406c73f84267281698302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<meta charset="utf-8" />
<style>
@keyframes bug {
from {display:none}
to {display:inline-block}
}
body {
animation-name: bug;
animation-duration: 1s;
}
</style>
</html>
|