mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
17 lines
361 B
XML
17 lines
361 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
window.addEventListener("load", boom, false);
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
document.getElementById("rect").setAttribute("filter", "url(#filter)");
|
||
|
|
document.getElementById("defs").setAttribute("fill", "red");
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<defs id="defs"><filter id="filter"/><rect id="rect"/></defs>
|
||
|
|
|
||
|
|
</svg>
|