continuously scroll multiple pictures on a web page using c# and html
-
I am programming in c# and html. On the bottom part of the page I would like to show a series of pictures, that need to scroll around. There are about 20 pictures. I have tried to create a panel in html but am unable to scroll each picture. Any assistance will be appreciated.
-
I am programming in c# and html. On the bottom part of the page I would like to show a series of pictures, that need to scroll around. There are about 20 pictures. I have tried to create a panel in html but am unable to scroll each picture. Any assistance will be appreciated.
Do you mean like this:
This is a picture
This is a picture
This is a picture
This is a picture
if so just add overflow-x, overflow-y, and overflow to css
Help people,so poeple can help you.
-
Do you mean like this:
This is a picture
This is a picture
This is a picture
This is a picture
if so just add overflow-x, overflow-y, and overflow to css
Help people,so poeple can help you.
I need them to be next each other, and then be able to scroll across the page. I will try your advice and let you know the result. Thanks Mike
-
I am programming in c# and html. On the bottom part of the page I would like to show a series of pictures, that need to scroll around. There are about 20 pictures. I have tried to create a panel in html but am unable to scroll each picture. Any assistance will be appreciated.
Sounds like you're looking for a slideshow? Google has quite a few suggestions. For example: http://css-tricks.com/snippets/jquery/simple-auto-playing-slideshow/[^] http://www.jssor.com/demos/image-slider.html[^] http://stackoverflow.com/questions/13860671/how-to-create-image-slideshow-in-html[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
I need them to be next each other, and then be able to scroll across the page. I will try your advice and let you know the result. Thanks Mike
This is a picture
This is a picture
This is a picture
This is a picture
then add a div with width that contains all the pictures in one row inside your viewport and give your viewport overflow style
Help people,so poeple can help you.