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

The Archive Base Latest Questions

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

I hae a very simple application. I create bubbles at the bottom of the

  • 0

I hae a very simple application. I create bubbles at the bottom of the page and have them floating to the top of the page.

I’ve tried two methods to do this:

1) Using a repeating JavaScript function that loops through the bubbles DOM and uses jQuery to decrease the “top” CSS property:

function frame() {
    $(".bubble").each(function() {
        $(this).css("top", "-=5");
    });
}

2) Using webkit CSS transitions:

.bubble {
    -webkit-transition: top 5s linear;
    top:-200px
}

Both methods work fine on a desktop browser, but neither does very well in a mobile environment. The CSS option is marginally faster, but still not what I’d call good.

Any tips?

  • 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-23T17:07:35+00:00Added an answer on May 23, 2026 at 5:07 pm

    Try:

    .bubble {
        -webkit-transition: top 5s linear;
        -webkit-transform: translate3d(0px, -200px, 0px);
    }
    

    On iOS at least, that will be hardware accelerated. If you want this to be slightly more backward compatible, then:

    .bubble {
        -webkit-transition: top 5s linear;
        -webkit-transform3d(0,0,0);
        -webkit-transform: translate(0px, -200px);
    }
    

    Will work on browsers without 3d transforms, whilst still getting HW accel. I’d verify that the first one improves performance, then check that the 2nd one also works as well, rather than just using the second one!

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

Sidebar

Related Questions

If I have a label on my asp.net page with ForeColor property set to
In my application I have a user control that do async operations using thread
i hae a link like ( domain.com/jsapi?key=123456 ) hov can i get this key
I've read a few other questions that seem similar but I'm still very confused,
Possible duplicate: why does the css min-width attribute not force a div to hae
I hae written the following code: class Object { public: Object() {} }; template
Can we use NOT LIKE '%abc%' just opposite of LIKE '%abc%' ? i tried
I hae a form on my website which I've just built, im unsure on
So I have the following code to check for the text file called Doctors.txt
i have searched this site back and forth withoutfinding a clear answer for what

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.