Connecting Tech Pros Worldwide Forums | Help | Site Map

iframe background transparancy

Keon
Guest
 
Posts: n/a
#1: Jul 23 '05
Hoi

Do someone know how i can make the background of a iframe transparancy? I
already tried it with filter: Alpha(Opacity=50,); but it also make the text
transperancy.

do someone know how to do this?

greetings
Koen



Keon
Guest
 
Posts: n/a
#2: Jul 23 '05

re: iframe background transparancy


I already found a solution

tnx
Koen

"Keon" <jansen.koen@telenet.be> wrote in message
news:FA4pd.34319$Ds6.1740909@phobos.telenet-ops.be...[color=blue]
> Hoi
>
> Do someone know how i can make the background of a iframe transparancy? I
> already tried it with filter: Alpha(Opacity=50,); but it also make the[/color]
text[color=blue]
> transperancy.
>
> do someone know how to do this?
>
> greetings
> Koen
>
>[/color]


sleeper
Guest
 
Posts: n/a
#3: Jul 23 '05

re: iframe background transparancy


And would you be so kind to share it with the worls

greetz,sleeper
"Keon" <jansen.koen@telenet.be> schreef in bericht
news:FA4pd.34319$Ds6.1740909@phobos.telenet-ops.be...[color=blue]
> Hoi
>
> Do someone know how i can make the background of a iframe transparancy? I
> already tried it with filter: Alpha(Opacity=50,); but it also make the[/color]
text[color=blue]
> transperancy.
>
> do someone know how to do this?
>
> greetings
> Koen
>
>[/color]


Keon
Guest
 
Posts: n/a
#4: Jul 23 '05

re: iframe background transparancy


I'm using a picture that the same is as the background.
the iframe is not transparant but you can't see the different between the
background of the iframe and the background of the page.

greeting
Koen


"sleeper" <sleepervb@hotmail.com> wrote in message
news:N32qd.2429$jN1.53301@phobos.telenet-ops.be...[color=blue]
> And would you be so kind to share it with the worls
>
> greetz,sleeper
> "Keon" <jansen.koen@telenet.be> schreef in bericht
> news:FA4pd.34319$Ds6.1740909@phobos.telenet-ops.be...[color=green]
> > Hoi
> >
> > Do someone know how i can make the background of a iframe transparancy?[/color][/color]
I[color=blue][color=green]
> > already tried it with filter: Alpha(Opacity=50,); but it also make the[/color]
> text[color=green]
> > transperancy.
> >
> > do someone know how to do this?
> >
> > greetings
> > Koen
> >
> >[/color]
>
>[/color]


mscir
Guest
 
Posts: n/a
#5: Jul 23 '05

re: iframe background transparancy


Keon wrote:[color=blue]
> I'm using a picture that the same is as the background.
> the iframe is not transparant but you can't see the different between the
> background of the iframe and the background of the page.
>
> greeting
> Koen
>
> "sleeper" <sleepervb@hotmail.com> wrote in message[color=green]
>>And would you be so kind to share it with the worls
>>greetz,sleeper[/color][/color]
[color=blue][color=green]
>>"Keon" <jansen.koen@telenet.be> schreef in bericht[color=darkred]
>>>Hoi
>>>Do someone know how i can make the background of a iframe transparancy? I
>>>already tried it with filter: Alpha(Opacity=50,); but it also make the
>>>text transperancy. do someone know how to do this?
>>>greetings
>>>Koen[/color][/color][/color]

http://msdn.microsoft.com/workshop/a...tingframes.asp

Using Transparency with Inline Floating Frames

Although Internet Explorer has supported transparent elements since
Internet Explorer 4.0, only Internet Explorer 5.5 supports transparent
content with inline floating frames.

The following conditions must be met to define transparent content for
inline floating frames.

* The ALLOWTRANSPARENCY attribute, used with the IFRAME element,
must be set to true.
* In the IFRAME content source document, the background-color or
BGCOLOR attribute of the BODY element must be set to transparent.

Note The BGCOLOR attribute can be applied to the BODY element, but it
is deprecated as of HTML 4.0. It is recommended that you use the
background-color attribute instead.

The following example shows how to apply the background-color attribute
to the IFRAME content source file.

<HTML>
<BODY STYLE="background-color:transparent">
<P>Transparent.
</BODY>
</HTML>

The following example shows how the IFRAME element is written for
transparent content.

<IFRAME NAME="Frame1" SRC="frame.htm" ALLOWTRANSPARENCY="true">
</IFRAME>
Closed Thread