mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +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>
|