mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 12:53:07 +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>
|