Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6911449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:57:26+00:00 2026-05-27T08:57:26+00:00

I need to create a simple horizontal scroll from a slew of pictures a

  • 0

I need to create a simple horizontal scroll from a slew of pictures a friend sent me. I don’t really work much with javascript as I think that is what I need to use to accomplish this, but I wanted to ask here first to see if there was a more viable option. Here is a shell pic of what he needs:

enter image description here

In which the thumbnail of pics will be displayed side by side in the red to orange gradient box, where the arrows on each side shift the pics. The sorts at the top would need to change the way the pics are arranged from left to right.

I am not looking for a step by step on how to create this. I am just asking for advice on how I should go about accomplishing this. I am assuming the easiest method is maybe jQueryUI but wanted your advice – maybe it is even doable in HTML 5 now?. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:57:27+00:00Added an answer on May 27, 2026 at 8:57 am

    Make a container element that is the size you want the visible potion of your slider to be, then add a child element that can be moved around to shift what content is currently viewable:

    <style>
    #container {
        position : relative;/*necessary so its child can be positioned absolutely*/
        width    : 500px;
        height   : 200px;
        overflow : hidden;
    }
    #container ul {
        position   : absolute;
        top        : 0;
        left       : 0;
        list-style : none;
        width      : <total number of LI elements times their width, so eight LI elements would be 800>px
    }
    #container li {
        width : 100px;
        float : left;
    }
    </style>
    
    <div id="container">
        <ul>
           <li>item 1</li>
           <li>item 2</li>
           ...
        </ul>
    </div>
    
    <script>
    $(function () {
        $('#left-nav-button').on('click', function () {
            //use `.animate()` or `.css()` to move the UL element to the left (Hint: negative `left` value)
        });
        $('#right-nav-button').on('click', function () {
            //use `.animate()` or `.css()` to move the UL element to the right
        });
    });
    </script>
    

    Here is a simple demo on jsfiddle: http://jsfiddle.net/qML6L/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create simple reusable javascript object publishing several methods and parameterized constructor.
I'd need to create simple patches from git repository that can be applied with
I need to create a simple editor using a RichTextBox control in a windows
I need to create a simple Chat system like facebook chat and a twitter-like
I need to create some simple effects for the layers which I have created
I need to create a simple mySQL database with a field for an image.
For the purpose of the question I need to create a simple fictitious scenario.
Sometimes you need to create a very simple single file application in Qt4. However
How to create simple PHP COMET server page displaying current time? I need code
i have very simple problem. I need to create model, that represent element of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.