Results 1 to 4 of 4

Thread: Want a transparent display

  1. #1
    Join Date
    Nov 2008
    Posts
    3,952

    Want a transparent display

    I would like to make a display to display a warning message. In fact, the HTML page was already sent and it is important that this framework is shown above (with a bit of transparency)

    But I do not know whether to do this in css, javascript or something else!

  2. #2
    Join Date
    May 2008
    Posts
    685

    Re: Want a transparent display

    The 2 are possible, you need to make a div (last element of the body) in CSS:

    Code:
    #maDiv {
      position: absolute; // to position above the rest; 
      -moz-opacity: 0.5; // property of transparency (0 to 1) for old browsers 
      opacity: 0.5; // property standard CSS 2 (and 3) for Firefox, IE8 and browser tt faithful to the W3C 
      filter: alpha (opacity = 50) // for Internet Explorer 7 and - (if I am not mistaken) 
    }
    Finally, there's not a worry but normally enough to continue ...

  3. #3
    Join Date
    Jan 2008
    Posts
    1,521

    Re: Want a transparent display

    Because you think IE8 is true to the W3C?

    Code:
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";;

  4. #4
    Join Date
    May 2008
    Posts
    271

    Re: Want a transparent display

    I think filter: alpha (opacity = 50); works very well in IE 8

    Personally I hate IE, but I had read and heard that it was the standard (not on everything, but on the most stupid thing).

Similar Threads

  1. What is a transparent proxy?
    By Tuhina in forum Networking & Security
    Replies: 4
    Last Post: 08-01-2011, 01:28 PM
  2. SWF with transparent background
    By mati in forum Software Development
    Replies: 6
    Last Post: 04-10-2010, 09:32 PM
  3. VB transparent interface
    By Cisco-s in forum Software Development
    Replies: 3
    Last Post: 25-11-2009, 04:26 PM
  4. Transparent GIF in Photoshop
    By Basaam in forum Windows Software
    Replies: 3
    Last Post: 07-05-2009, 02:18 PM
  5. Making a frame transparent in Vb.Net?
    By Pooja in forum Software Development
    Replies: 3
    Last Post: 16-02-2009, 04:41 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,555,609.99419 seconds with 17 queries