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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:28:50+00:00 2026-06-09T18:28:50+00:00

I’ve been trying to get a CSS3 transition effect to work in Chrome and

  • 0

I’ve been trying to get a CSS3 transition effect to work in Chrome and Safari without no luck. As you can see in the code example below I’m using the :target pseudo class selector to trigger a keyframe-animation which, in this case, moves the div from one position to another. As soon as you click another link the div disappears (it jumps back to it’s original position).

To prevent this instant jump, I’ve added a transition effect to the original state of the div. By doing this, the transition will kick in and the div will “slide” back to the top, at least if you are using Firefox or Opera. Chrome and Safari seems to ignore the transition effect and I’m not sure why?

I have never combined transitions and animations like this before, so I might be missing something?

Any ideas on how I can make it work in Chrome and Safari (preferably with CSS3)?

I’m using Mac OS X, Chrome 21, Firefox 14.0.1 and Opera 12.01

Here’s a jsFiddle and here’s the code used in the jsFiddle example:

Html

<a href="#id1">One</a>
<a href="#id2">Two</a>

<div id="id1">
Hello hello
</div>

CSS

#id1 {
    position: absolute;
    top: -100px;
    left: 100px;
    width: 100px;
    height: 100px;

    /* Not working */
    -webkit-transition-timing-function: linear;
    -webkit-transition-duration: 0.5s;

    /* Working */
    -moz-transition-timing-function: linear;
    -moz-transition-duration: 0.5s;

    /* Working */
    -o-transition-timing-function: linear;
    -o-transition-duration: 0.5s;    
}

#id1:target {
     -webkit-animation: down 0.5s ease-in forwards;
        -moz-animation: down 0.5s ease-in forwards;
          -o-animation: down 0.5s ease-in forwards;
}

@-webkit-keyframes down {
      0%   { top: -100px; left: 100px; }
      100% { top: 200px; left: 100px;  }
}

@-moz-keyframes down {
      0%   { top: -100px; left: 100px; }
      100% { top: 200px; left: 100px;  }
}

@-o-keyframes down {
      0%   { top: -100px; left: 100px; }
      100% { top: 200px; left: 100px;  }
}

​

  • 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-06-09T18:28:51+00:00Added an answer on June 9, 2026 at 6:28 pm

    It looks like as if the animation cancels out the transition. Probably because you don’t set left and top explicitly so the transition doesn’t know where to start.

    I’ve updated your fiddle to show you that you can do without animation.

    If you were aiming for the animation to happen on page load, just add the keyframes back in.

    You could also save a lot of space by using shorthand descriptions and leaving out default values like forwards

    #id1 {
        position: absolute;
        top: -100px;
        left: 100px;
        width: 100px;
        height: 100px;
    
        -webkit-transition: 0.5s linear;
           -moz-transition: 0.5s linear;
             -o-transition: 0.5s linear;
    }
    
    #id1:target {
        top: 200px;
        left: 100px;
         -webkit-animation: down 0.5s ease-in;
            -moz-animation: down 0.5s ease-in;
              -o-animation: down 0.5s ease-in;
    }
    
    @-webkit-keyframes down {
          0%   { top: -100px;}
          100% { top: 200px;}
    }
    
    @-moz-keyframes down {
          0%   { top: -100px;}
          100% { top: 200px;}
    }
    
    @-o-keyframes down {
          0%   { top: -100px;}
          100% { top: 200px;}
    }
    

    If you need super smooth transitions, think about using a 2d transform. They use subpixel accuracy which you will notice (at least in webkit) for slow effects. See this dabblet.

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

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have this code to decode numeric html entities to the UTF8 equivalent character.
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I'm trying to select an H1 element which is the second-child in its group

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.