mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 21:33:09 +09:00
10 lines
203 B
HTML
10 lines
203 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
p { --variable: value; transition: 1s --variable; }
|
|
</style>
|
|
<p>Hello.</p>
|
|
<script>
|
|
window.onload = function() {
|
|
document.querySelector("p").style.color = "green";
|
|
};
|
|
</script>
|