mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 09:18:37 +09:00
21 lines
206 B
HTML
21 lines
206 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
@keyframes c {
|
|
50% {
|
|
stroke-dasharray: context-value;
|
|
}
|
|
}
|
|
|
|
div {
|
|
animation-name: c;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|