我为使用该系统的每个用户创建了一个独特的动态水印图像。我想让它可重复而不是作为背景,在背景图像中你不能用它的其他页面打印它我想通过打印他的id来控制他作为水印图像重复所有数据所以他不能在其他任何地方使用它,有没有其他方法可以重复打印出来的图像?
我喜欢这个代码
<div class="container">
<table>
<tr>
<td>A</td>
<td>1</td>
</tr>
<tr>
<td>B</td>
<td>1</td>
</tr>
</table>
A lot of content here maybe more like not less than 20 row ...
</div>
和JS:
$("<div><img src='http://www.adobe.com/business/calculator/VIP/image/loader.gif' width='30px' style='margin-left:45%; margin-top:4%;' repeat /></div>").css({
position: "absolute",
width: "100%",
height: "100%",
top: 0,
left: 0,
opacity:0.4,
background: "#ccc"
}).appendTo($(".container").css("position", "relative"));