11/29/10

Handling Keyboard Events in Javascript

Guys if u have seen the moving of pictures on pressing a key in FB , FLICKR etc. Can also be done by you all now.
The code for Handling the keyboard button press etc is shown below



**********************##***********************
document.onkeydown = keyHit;
var thisPic = 0;
function keyHit(evt) {
var myPix = new Array("List down your images here (ex. "images/callisto.jpg",
               "images/callisto123.jpg")");
var imgCt = myPix.length-1;
var ltArrow = 37;
var rtArrow = 39;
var thisKey;
if (evt) {
thisKey = evt.which;
}else {
thisKey = window.event.keyCode;
}
if (thisKey == ltArrow) {
chgSlide(-1);
}else {
if (thisKey == rtArrow) {
chgSlide(1);
}
}
return false;
function chgSlide(direction) {
thisPic = thisPic + direction;
if (thisPic > imgCt) {
thisPic = 0;
}
if (thisPic < 0) {
thisPic = imgCt;
}
document.getElementById("myPicture").src = myPix[thisPic];
}
}


SHARE THIS POST:

Related Posts:

  • Roll Overs in HTML Below is a code which helps u create a roll over. for that u need to have a folder (in which the images will be there). Roll overs are like slide show of images (or anything u want), in which u press a button and the image… Read More
  • Working with DOM , nodes and Objects (part 2) : Deleting Nodes As my last post of DOM was on Adding nodes here is a post that will help you in deleting the last entered node. ie DELETING Nodes. *----------------------*----------------------*---------------------* HTML CODE: … Read More
  • Detecting a Cookie Here is a piece of code that can help people detect cookies. Cookies play an important part in the website. *****************#####***************** JS Code: window.onload = showCookies; function showCookies() {  &nb… Read More
  • Javascript Smarter Links Here is a piece of code which when you use will make your link in the website SMARTER. This piece of code i used it during my internship and it was well appreciated by the company as it made the user know that the content… Read More
  • Working with DOM,nodes and Objects : Inserting Nodes (part 3) This Post is a continuation of my previous posts ie Adding Nodes and Deleting Nodes. IN this post i am tell how you can add nodes between any two nodes. *----------------------*----------------------*----------------… Read More