popups and css

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

    popups and css

    Anyone know where I can find some sample code that will produce a popup
    window like the one on Amazon.com when you hover over the see all product
    categories at the top? they hide their code pretty well. I've come up with
    something similar, but it has a few cross browser glitches...

    Thanks,

    Anthony


  • Lasse Reichstein Nielsen

    #2
    Re: popups and css

    "Anthony DePinto" <anthony@idmi.n et> writes:
    [color=blue]
    > Anyone know where I can find some sample code that will produce a popup
    > window like the one on Amazon.com when you hover over the see all product
    > categories at the top?[/color]

    Try Overlib: <URL:http://www.bosrup.com/web/overlib/>
    [color=blue]
    > they hide their code pretty well. I've come up with
    > something similar, but it has a few cross browser glitches...[/color]

    So does Amazon's. It doesn't work in, e.g., Opera.

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • hugo2

      #3
      Re: popups and css



      Anthony DePinto wrote:[color=blue]
      > Anyone know where I can find some sample code that will produce a popup
      > window like the one on Amazon.com when you hover over the see all product
      > categories at the top? they hide their code pretty well. I've come up with
      > something similar, but it has a few cross browser glitches...
      >
      > Thanks,
      >
      > Anthony[/color]

      obrhy July 7, 2005
      Hello, Anthony. The term 'popup' is clear. Some element or object that
      is hidden, and becomes visible thru a users event fire that calls code
      that shows the element or object.

      But what do you mean by a 'window'? An actual modeless instance of the
      browser, or a modal window like alert or showModalDialog ?
      What about some child element of the document, such as the
      creatPopup() method? IE suports this, but I don't know whoelse does.
      I think this method uses a DIV element for its framework.
      You can also make your own 'enhanced tooltip' directly with a DIV
      or SPAN element, styling it as you wish with CSS.

      obrhy --------------------

      Comment

      Working...