Display buttons horizontally one after another after a span of time

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cmrhema
    Contributor
    • Jan 2007
    • 375

    Display buttons horizontally one after another after a span of time

    Hi
    I am new to html.
    I just did an online study of it.
    I have placed 4 buttons on asp.net 2005
    I want to have it displayed one after the other horizantally but after a little span of time.
    Any suggestions of how to do it?
    thanks
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    First, there is no such thing as "layering" or "layers" in html. This is a term associated with Dreamweaver product only and should not be used when talking about HTML. The only exception might be when referring to z-index. Otherwise, it's just confusing.

    HTML/CSS cannot do what you are questioning and, if you are doing this in asp.net, then you should ask on that board and I'll transfer you there.

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      Originally posted by cmrhema
      Hi
      I am new to html.
      I just did an online study of it.
      I have placed 4 buttons on asp.net 2005
      I want to have it displayed one after the other horizantally but after a little span of time.
      Any suggestions of how to do it?
      thanks
      You're looking for Javascript timing (setTimeout or setInterval).

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        Originally posted by drhowarddrfine
        First, there is no such thing as "layering" or "layers" in html. This is a term associated with Dreamweaver product only and should not be used when talking about HTML. The only exception might be when referring to z-index. Otherwise, it's just confusing.
        Changed thread title to remove reference to "layering".

        Comment

        Working...