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 6750895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:51:44+00:00 2026-05-26T12:51:44+00:00

I am wondering if it is possible to adapt this HTML5 technology in 2D,

  • 0

I am wondering if it is possible to adapt this HTML5 technology in 2D, such that e.g. we could use the arrow keys to navigate a 3 by 3 slides grid.

If so, could you indicate a source?

  • 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-26T12:51:44+00:00Added an answer on May 26, 2026 at 12:51 pm

    There is a plugin written long time ago:
    http://flesler.blogspot.com/2007/10/jqueryscrollto.html
    that allows you to do what you desire with JavaScript:
    http://demos.flesler.com/jquery/scrollTo/

    This is a brief outline of what you could do with this plugin:

    (function () {
    
      // find a current slide by whatever way you want, 
      // i.e. first slide or one that has some class or something...
      var container = $('.container'), 
          currentSlide = container.find('.slide:first');
    
      $(document).bind('keydown', function(e) {
        var code = e.keyCode || e.which;
        // 37 – left arrow
        // 39 - right arrow
        // 40 - down arrow
        // 38 - up arrow
        if ( code === 37 || code === 39 || code === 38 || code === 40 ) {
          e.preventDefault();
    
          switch ( code ) {
            case 37 :
              container.scrollTo ( currentSlide.prev(); );
              break;
            case 39 :
              container.scrollTo ( currentSlide.next(); );
              break;
            case 38 :
              container.scrollTo ( // implement finding one that is above );
              break;
            case 40 :
              container.scrollTo ( // implement findign one that is below );
              break;
        }
      });
    
    } ());
    

    Note that your container will need to have overflow:hidden and dimensions set on it from CSS (or of course you can do that from JS if you want to). You can find all requirements in plugins page.

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

Sidebar

Related Questions

I'm wondering if its possible to do this. The issue being that im trying
I was wondering if its possible to use Javascript to change the function/method that
I was wondering ( if possible ) if there was a program/tool/utility that when
I was wondering if its possible to use the Google maps IFRAME code to
I was wondering - is it possible to change files that are stored on
I am wondering is it possible to have a list box that has custom
I was wondering...is it possible to use a value from an array which is
I'm wondering if its possible to make a list like this: Or should I
Wondering if its possible to communication from javascript to flash without the use of
I'm wondering if its possible to use string substitution along with the python re

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.