blob: 6413b726110005534c0e7e3dc5aa094292298ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0" standalone="no"?>
<svg width="315px" height="445px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg viewBox="0 0 21000 29700" id="thetarget">
<script>
// <![CDATA[
function insertRect(x,y,w,h) {
const rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
rect.setAttribute("x", x.toString());
rect.setAttribute("y", y.toString());
rect.setAttribute("height", h.toString());
rect.setAttribute("width", w.toString());
document.getElementById("thetarget").appendChild(rect);
}
function place() {
let baseleft = 2000;
let basetop = 2000;
let width = 18;
let height = 539;
let coldiff = 66;
let rowdiff = 600;
for (let row = 0; row <= 60; row++) {
for (let col = 0; col <= 360; col++) {
insertRect(baseleft + col*coldiff + row, basetop + rowdiff*row, width, height);
}
}
}
place();
// ]]>
</script>
</svg>
</svg>
|