mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
11 lines
256 B
HTML
11 lines
256 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<script>
|
||
|
|
window.onload=function(){
|
||
|
|
var a = document.createElement("div");
|
||
|
|
document.documentElement.appendChild(a);
|
||
|
|
a.animate([{borderLeftColor:"black"},
|
||
|
|
{borderLeftColor:"hsl(0,0e309%,0%)"}]);
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
</html>
|