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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:38:23+00:00 2026-06-11T23:38:23+00:00

Does anyone have cheats or tips for how to improve the smoothness of CSS3

  • 0

Does anyone have cheats or tips for how to improve the smoothness of CSS3 animation? I’m sliding the entire page to the left using a css transition and it’s a bit more juttery than I’d like. It’s a single element but it contains numerous rounded corners, gradients, drop shadows, etc as it’s a complicated page.

In flash actionscript, there is a handy property cacheAsBitmap which converts the animating element into a bitmap before the animation begins. This is a godsend and significantly speeds up certain types of animation. Is there anything like this for CSS? Are there any other tips out there to improve performance without simplifying the page design? I’m thinking things like enabling hardware acceleration or flagging the animation as high priority for the browser.

  • 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-11T23:38:24+00:00Added an answer on June 11, 2026 at 11:38 pm

    Before the will-change directive, you couldn’t do this in the same literal way that you can in other languages. The browser (or at least Webkit) dealt with rendering the page by drawing various layers. It should in theory be intelligent enough to work out the layers for you, but sometimes it was a good idea to force something into its own layer.

    Sometimes that worked, sometimes it didn’t, depending on exactly what’s going on.

    Anyway.

    In CSS, one way to force something into a layer is to transform it using a 3D transform. A common strategy is to add either:

    transform: translateZ(0);
    

    or the equivalent:

    transform: translate3d(0,0,0);
    

    or the slightly crazy:

    transform: rotateZ(360deg);
    

    or the translate ones combined with:

    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    

    if things are flickery.

    These create a new layer as that’s what the spec defines. From http://www.w3.org/TR/css3-transforms/#transform-property,

    “Any value other than ‘none’ for the transform results in the creation
    of both a stacking context and a containing block.”

    These all need careful testing, and aren’t something to just always bung on anything that might need it – sometimes it’s better, sometimes it’s no different, and sometimes it’s worse!

    Good luck!

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

Sidebar

Related Questions

Does anyone have a good tutorial on Java + Cucumber integration? I've begun using
Does anyone have a recommended way to find definitions in header files when using
Does anyone have a modern CSS method for doing something like this? I've been
Does anyone have an examples for using the BaseExpandableListAdapter with Mono for Android. I'm
Does anyone have a definitive way to post to a user's wall, using nothing
Does anyone have a good example in Ruby of using a Composite of Commands?
Does anyone have an example of using git hash-object on a directory? It works
Does anyone have any up-to-date statistics regarding percentage of users using iOS 4.3? I'm
Does anyone have a working example of using the new GWT constructs for RequestFactory
Does anyone have a good way to build MSI (vdproj) projects using MsBuild or

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.