14 lines
200 B
HTML
14 lines
200 B
HTML
<!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>
|