mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
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>
|