blob: 7fd18c314a91605f198c63176e67f90123fb49ca [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
width: 400px;
height: 300px;
border: 50px solid transparent;
padding: 50px;
}
</style>
<script>
var sizeX = 153, sizeY = 127, spaceX = 21, spaceY = 10, width = 700, height = 600;
var urls = Array(), size = Array(), position = Array();
function addBackground() {
for (var x = 0; x < width; x += sizeX + spaceX) {
for (var y = 0; y < height; y += sizeY + spaceY) {
urls.push("url(resources/circle.png)");
size.push(sizeX + "px " + sizeY + "px");
position.push(x + "px " + y + "px");
}
}
div = document.getElementById("main");
div.style.cssText += "background-image: " + urls.join(", ") + ";" +
"background-size: " + size.join(", ") + ";" +
"background-position: " + position.join(", ") + ";" +
"background-repeat: no-repeat;" +
"background-origin: padding-box;" +
"background-clip: padding-box;";
}
</script>
</head>
<body onload="addBackground()">
<div id="main" />
</body>
</html>