mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
16 lines
261 B
HTML
16 lines
261 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.anim { animation: anim 2s infinite linear }
|
|
@keyframes anim { }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var i = document.createElement('i');
|
|
i.setAttribute('class', 'anim');
|
|
getComputedStyle(i).display;
|
|
</script>
|
|
</body>
|
|
</html>
|