Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition
1: absoluut positioneren zonder nesten
2: plaatjes gebruiken (gif /png-a) om de achtergrond transparant te maken.
Pong is probably the best designed shooter in the world.
It's the only one that is made so that if you camp, you die.
is de enige oplossing, of heeft er iemand nog ideeen/suggesties?
Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition
[code=css].transparent {
filter:alpha(opacity=90);
opacity: 0.9;
-moz-opacity:0.9;
}
.transparent * {
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
position: relative;
}[/]
[ Voor 2% gewijzigd door frickY op 01-01-2006 14:37 . Reden: Voorbeeld werkt na controlle idd niet ]
Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition
iemand anders nog suggesties?
Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition
Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition
Zoiets zou inderdaad kunnen. Redelijk simpel misschien zelfs? Of is dit te simpel?Tombo_inc schreef op maandag 02 januari 2006 @ 15:25:
je bedoelt alle childs uit de parent div kopieeren en die er overheen zetten?
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
34
35
36
37
38
39
40
41
42
43
44
| //javascript //from quirksmode.org: function findPosX(obj) { var curleft = 0; if (obj.offsetParent) { while (obj.offsetParent) { curleft += obj.offsetLeft obj = obj.offsetParent; } } else if (obj.x) curleft += obj.x; return curleft; } function findPosY(obj) { var curtop = 0; if (obj.offsetParent) { while (obj.offsetParent) { curtop += obj.offsetTop obj = obj.offsetParent; } } else if (obj.y) curtop += obj.y; return curtop; } //the function: function transparantNode(node) { var newNode=node.cloneNode(true); newNode.style.left=findPosX(node); newNode.style.top=findPosY(node); node.style.display='none'; newNode.className='transparantNode'; document.appendChild(newNode); } |
Ja, en wat djluc heeft gemaakt, zoiets.Tombo_inc schreef op maandag 02 januari 2006 @ 15:25:
je bedoelt alle childs uit de parent div kopieeren en die er overheen zetten?
Microsoft Windows: A thirty-two bit extension and graphical shell to a sixteen-bit patch to an eight-bit operating system originally coded for a four-bit microprocessor which was written by a two-bit company that can't stand one bit of competition