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

  • Home
  • SEARCH
  • 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 528127
In Process

The Archive Base Latest Questions

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

I’m trying to create a jQuery Slider like this . I can’t find any

  • 0

I’m trying to create a jQuery Slider like this.

I can’t find any tutorials or plugins anywhere that make them like this one.

  • 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-13T08:57:17+00:00Added an answer on May 13, 2026 at 8:57 am

    I would highly recommend the SerialScroll plug-in here is a demo, and the documentation can be found here.

    I created a really cool image slider with this plug-in and some simple html. Below is the code and HTML that I used.

    <div id="featProd_container">
        <span id="previous" class="disable">&nbsp;</span>
        <span id="next" class="step">&nbsp;</span>
    
    <%--    <div id="featProd_maskOver"></div>--%>
        <div id="featProd_mask">
            <asp:ListView ID="lvFeatured" runat="server" GroupItemCount="2">
                <LayoutTemplate>
                    <div id="featProd_scroll">
                        <div id="groupPlaceholder" runat="server" />
                    </div>
                </LayoutTemplate>
                <GroupTemplate>
                    <div class="itemSet">
                        <div id="itemPlaceholder" runat="server" />
                    </div>
                </GroupTemplate>
                <GroupSeparatorTemplate></GroupSeparatorTemplate>
                <ItemTemplate>
                    <div class="item">
                        <a href='<%# ((string)Eval("DetailUrl")).Replace("~", "") %>'><img src='<%# Eval("SliderImageUrl") %>' /></a> 
                        <div class="itemInfo">
                            <h3><a href='<%# ((string)Eval("DetailUrl")).Replace("~", "") %>' style="color:Black;"><%# Eval("DisplayName") %></a> </h3> 
                            <span><%# Eval("ProductId")%></span>
                        </div>
                    </div>          
                </ItemTemplate>     
            </asp:ListView>
        </div>
        <div id="jumpLinkContainer" style="display: table; margin:0 auto;">
            <ul id="featProd_control" style="width: 70px;">
                <asp:PlaceHolder ID="phJumpLinks" runat="server" /> 
            </ul>
        </div>
    </div>
    

    Just tee up a script call like this one below and configure the behavior and the navigation element selectors.

    <script type="text/javascript">
        $(document).ready(function() { loadFeaturedProducts(); });
    
        function loadFeaturedProducts() {
    
            $('.item > a, .itemInfo > h3 > a').click(function() { var link = $(this).attr('href'); if (link) { document.location.href = link; } });
    
            $('#featProd_container > #featProd_mask').serialScroll({
                items: '#featProd_scroll > .itemSet',
                prev: '#featProd_container > #previous',
                next: '#featProd_container > #next',
                //offset: -230, //when scrolling to photo, stop 230 before reaching it (from the left)
                start: 0, //as we are centering it, start at the 2nd
                duration: 700,
                force: true,
                stop: true,
                lock: false,
                cycle: false, //don't pull back once you reach the end
                easing: 'easeOutQuart', //use this easing equation for a funny effect
                jump: true, //click on the images to scroll to them
                navigation: '#featProd_container > #jumpLinkContainer > #featProd_control > li',
                onBefore: function(e, elem, $pane, $items, pos) {
    
                    var nav = $('#featProd_container > #jumpLinkContainer > #featProd_control > li');
                    nav.removeClass("active"); nav.eq(pos).toggleClass("active");
    
                    if ($items) {
                        var jq = $('#featProd_container > #next, #featProd_container > #previous').removeClass("disable");
                        if (pos == 0)
                            $('#featProd_container > #previous').toggleClass("disable");
                        else if (pos == ($items.length - 1))
                            $('#featProd_container > #next').toggleClass("disable");
    
                    }
                }
            });
        }
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.