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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
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:
Note that your container will need to have
overflow:hiddenand 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.