mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
13 lines
243 B
HTML
13 lines
243 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var r = document.documentElement;
|
||
|
|
r.style.display = "table-cell";
|
||
|
|
r.style.transitionProperty = "x";
|
||
|
|
window.getComputedStyle(r).transitionProperty;
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<body onload="boom();"></body>
|