mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
10 lines
296 B
HTML
10 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body style="background-size: cover; transition-duration: 1ms"></body>
|
|
<script>
|
|
var body = document.body;
|
|
/* flush */ getComputedStyle(body, "").backgroundSize;
|
|
body.style.backgroundSize = 'contain';
|
|
/* flush */ getComputedStyle(body, "").backgroundSize;
|
|
</script>
|
|
</html>
|