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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:23:35+00:00 2026-05-27T02:23:35+00:00

I have tested both ways. jquery animation and css3 transition, and css3 is a

  • 0

I have tested both ways. jquery animation and css3 transition, and css3 is a little bit faster. But i have a problem with the following code:

 $(document).keydown(function(e){
if (e.keyCode == 39) { 
    var DocHeight = $(document).height();
    $('.container').css("margin-top","-="+DocHeight)
}
});

if i hit twice on keyCode 39 (arrow to the right) than my transition is outer space. Does anyone has an solution for this thing?

outer space

maybe not the correct word. But the problem is. if i hit twice the arrow key i’ll get the last request, in other words… animation is started, and another animation start from the position that i don’t want.

example: hit #1 margin-top is at 0px and goes to 1024px. but when i hit it twice the margin-top is at 23px, and it stops at 1047px.

This is not what i want. It has to stop at 1024px.

I hope so.

  • 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-27T02:23:36+00:00Added an answer on May 27, 2026 at 2:23 am

    Try

    var mTop = 0;
    $(document).keydown(function(e){
      if (e.keyCode == 39) { 
        var DocHeight = $(document).height();
        mTop = mTop - parseInt(DocHeight);
        $('.container').css("margin-top", mTop);
      }
    });
    

    This just keeps on going, if you just want it to animate once and stop, try something like:

    var mTop = 0;
    $(document).keydown(function(e){
      if (e.keyCode == 39) { 
        var WinHeight = $(window).height();
        mTop = parseInt(WinHeight);
        $('.container').css("margin-top", -mTop);
      }
    });
    

    Using document height is a bad idea when moving stuff with margins, also just adding the document height to the css each time with “-=” will cause problems when you hit the button before the animation is finished and it adds to a value that is somewhere inbetween, you should do the math in a variabe instead, and use that variable for setting the css for consistency.

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

Sidebar

Related Questions

Why doesn't following code work correctly in FireFox 3.6? I have tested in IE7,
have not tested on windows. but in ubuntu when u disconnect from the network,
I have tested both mercurial and SVN recently, and I fell for Mercurial to
I want to compress my 2000+ lines of javascript and I have tested both
I have tested a bit of assembler on Linux using the AT&T syntax. One
I am trying to use Qunit to test some code, but I have some
I have recently encountered a problem in IE, using the jQuery UI datepicker script:
I have the following problem. My application has a tab bar at the bottom
I have tested my website on Safari and Firefox on both PC and Mac
I have tested all my systems developed in Delphi (in Windows XP) on Wine

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.