mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +09:00
11 lines
242 B
HTML
11 lines
242 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script>
|
|
window.onload=function(){
|
|
var a = document.createElement("div");
|
|
document.documentElement.appendChild(a);
|
|
a.animate([{color:"rgb(0,0,0)"},
|
|
{color:"rgb(0e309%,0%,0%)"}]);
|
|
};
|
|
</script>
|
|
</html>
|