iframe background transparancy

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Keon

    #1

    iframe background transparancy

    Hoi

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

    do someone know how to do this?

    greetings
    Koen


  • Keon

    #2
    Re: iframe background transparancy

    I already found a solution

    tnx
    Koen

    "Keon" <jansen.koen@te lenet.be> wrote in message
    news:FA4pd.3431 9$Ds6.1740909@p hobos.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=5 0,); but it also make the[/color]
    text[color=blue]
    > transperancy.
    >
    > do someone know how to do this?
    >
    > greetings
    > Koen
    >
    >[/color]


    Comment

    • sleeper

      #3
      Re: iframe background transparancy

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

      greetz,sleeper
      "Keon" <jansen.koen@te lenet.be> schreef in bericht
      news:FA4pd.3431 9$Ds6.1740909@p hobos.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=5 0,); but it also make the[/color]
      text[color=blue]
      > transperancy.
      >
      > do someone know how to do this?
      >
      > greetings
      > Koen
      >
      >[/color]


      Comment

      • Keon

        #4
        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@hotm ail.com> wrote in message
        news:N32qd.2429 $jN1.53301@phob os.telenet-ops.be...[color=blue]
        > And would you be so kind to share it with the worls
        >
        > greetz,sleeper
        > "Keon" <jansen.koen@te lenet.be> schreef in bericht
        > news:FA4pd.3431 9$Ds6.1740909@p hobos.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=5 0,); but it also make the[/color]
        > text[color=green]
        > > transperancy.
        > >
        > > do someone know how to do this?
        > >
        > > greetings
        > > Koen
        > >
        > >[/color]
        >
        >[/color]


        Comment

        • mscir

          #5
          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@hotm ail.com> wrote in message[color=green]
          >>And would you be so kind to share it with the worls
          >>greetz,sleepe r[/color][/color]
          [color=blue][color=green]
          >>"Keon" <jansen.koen@te lenet.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=5 0,); 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 ALLOWTRANSPAREN CY 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="backgrou nd-color:transpare nt">
          <P>Transparen t.
          </BODY>
          </HTML>

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

          <IFRAME NAME="Frame1" SRC="frame.htm" ALLOWTRANSPAREN CY="true">
          </IFRAME>

          Comment

          Working...