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???"
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
"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>
/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