Scoll box for pictures

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

    Scoll box for pictures

    HI
    How would i make a scroll box for pictures?
    Thanks
    Chris

  • Zif

    #2
    Re: Scoll box for pictures

    chrisdude911 said on 27/04/2006 5:24 AM AEST:[color=blue]
    > HI
    > How would i make a scroll box for pictures?[/color]

    There's one here a 5 year old can make:

    <URL:http://www.scholastic. com/earlylearner/timetogether/preschool/rollread.htm>


    --
    Zif

    Comment

    • chrisdude911

      #3
      Re: Scoll box for pictures

      Sorry!
      I mean in JAVASCRIPT!
      Thanks
      Chris

      Comment

      • Erwin Moller

        #4
        Re: Scoll box for pictures

        chrisdude911 wrote:
        [color=blue]
        > Sorry!
        > I mean in JAVASCRIPT!
        > Thanks
        > Chris[/color]

        Hi Chris, a friendly word of advise:

        What is EXCATLY what you are asking for?
        I don't know what a 'scrollbox for pictures' is suposed to be/supposed to
        work. Well, actually I can think up 10 things that fit that description.

        Asking a to-the-point question is important to get help here (and everywhere
        for that matter.).

        So ask yourself:
        What should be displayed WHERE?
        What should excactly scroll?
        How should the scolling work?
        Is a userinteraction required?
        Will it be a slideshow-like thingy that just displays them automatically?
        And above all: What did you try yourself so far?

        These are the kind of questions that comes into mind when you bluntly ask
        "How would i make a scroll box for pictures?"

        No offense intended, but try a little harder to be clear, ok?
        Most people don't even answer vague questions, because they think: "Why
        should I try to answer a question when the original poster doesn't even
        bother to ask a clear question???"

        Regards,
        Erwin Moller

        Comment

        • chrisdude911

          #5
          Re: Scoll box for pictures

          Hi,
          Sorry!
          I was in a bit of a rish this morning so i didn't post very well.
          How could i make a box on the webpage that displays 200 photos in a
          table, but only takes up 300px by 300px of the screen, by having a box
          that allows you to scoll through the pictures. So how would i do this?
          Thanks
          Chris

          Comment

          • Lasse Reichstein Nielsen

            #6
            Re: Scoll box for pictures

            "chrisdude9 11" <chriswillis10@ gmail.com> writes:
            [color=blue]
            > I was in a bit of a rish this morning so i didn't post very well.
            > How could i make a box on the webpage that displays 200 photos in a
            > table, but only takes up 300px by 300px of the screen, by having a box
            > that allows you to scoll through the pictures. So how would i do this?[/color]

            No need for scripting for that.
            ----
            <title>Image test page</title>
            <style type="text/css">
            #imgbox {
            width: 300px;
            height: 300px;
            overflow: auto;
            }
            </style>

            <div id="imgbox">
            <table>
            <tr><td><img src="img1.png"> </td></tr>
            <!-- ... -->
            <tr><td><img src="img200.png "></td></tr>
            </table>
            </div>
            ----

            I would drop the table.

            /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

            • Thomas 'PointedEars' Lahn

              #7
              Re: Scoll box for pictures

              Lasse Reichstein Nielsen wrote:
              [color=blue]
              > <title>Image test page</title>
              > <style type="text/css">
              > #imgbox {
              > width: 300px;
              > height: 300px;
              > overflow: auto;
              > }
              > </style>
              >
              > <div id="imgbox">
              > <table>
              > <tr><td><img src="img1.png"> </td></tr>
              > <!-- ... -->
              > <tr><td><img src="img200.png "></td></tr>
              > </table>
              > </div>
              > ----
              >
              > I would drop the table.[/color]

              Right, one should use floats instead. See also a site of a friend of mine:

              <URL:http://das-mehdorn.de/galerie/>


              PointedEars
              --
              What one man can invent another can discover.
              -- Sherlock Holmes in Sir Arthur Conan Doyle's
              "The Adventure of the Dancing Men"

              Comment

              Working...