• Posted on: Sep 4, 2010
  • Tag: mobile dev
  • Reactions: 23

> You shall not flicker!

spacer

Off screen items on iScroll are not cached by the mobile browser, when it comes their turn to appear on screen they need a few moments before being accessible, creating a nasty flickering. Well, there’s an easy trick to force the browser to cache all elements and it’s so simple I regret not having tried it before.

This flickering is a well know “feature” to all iScroll users. Have a look at this example (only on real device! no simulator). I added some background images and text shadows to emphasize the flickering. The effect is less noticeable on iPad and newer devices, but still it makes the application feel less “native”.

Now have a look at the flicker free example. The only difference between the two is that in the flicker free version I’m applying -webkit-transform:translate3d(0,0,0) CSS style to all elements inside the scrolling area.

Why isn’t this going to be included in the main iScroll script? The answer is: memory allocation.

We do not have control over memory in mobile webkit. If we use too many resources the browser just crashes, and of course if you have thousands elements inside the scrolling area, forcing the browser to cache everything, would just make your application crash.

So that’s why you should optimize your application and use the -webkit-transform trick sparingly.

Also try to keep your HTML structure as simple as possible. Remember that the following:

<ul>
   <li><a class="somewhere">Some text</a></li>
</ul>

Can be always replaced by:

<ul>
   <li>

We just lightened the HTML structure by 50%. If you have 100 rows, you’d have 100 tags instead of 200. (And of course I’d use even listeners instead on inline onclick.

/Share the joy

  • Tweet

/Reactions

  • Pingback: Tweets that mention You shall not flicker! | Matteo Spinelli's Cubiq.org -- Topsy.com
    • Author: Richard Herrera
    • Posted on: 2010/09/04
    • At: 19:12

    You should also look into -webkit-backface-visibility to minimize the flicker issues.

      • Author: Matteo Spinelli
      • Posted on: 2010/09/04
      • At: 19:31

      yes, it works with many other properties as well, the bottom line is to force the CSS HW layer over all objects in the scrolling area. But the memory problem still remains.

      • Author: Richard Herrera
      • Posted on: 2010/09/04
      • At: 19:38

      In my opinion that problem should be par for the course and you should enable it anyway. There’s no way around the issue, and anyone that nests enough elements to encounter the memory issue will want a workaround for the flickering anyway.

      Or perhaps it can be an opt-out setting.

      • Author: Matteo Spinelli
      • Posted on: 2010/09/04
      • At: 19:42

      True, it could be an opt-out, or maybe opt-in feature (chache:true ?). Only if we had memory management…

    • Author: H4CK3R
    • Posted on: 2010/09/05
    • At: 10:51

    “Iโ€™m applying -webkit-transform:translate3d(0,0,0) CSS style to all elements inside the scrolling area.”

    Why not apply it to elements before they enter the visible area but not all so it would cache the visible elements and soem above and below?

    Or would the detecting whats visible and constantly applying that to things cause a performance issue too.

      • Author: Matteo Spinelli
      • Posted on: 2010/09/05
      • At: 11:23

      I’m afraid the engine is not powerful enough to do such an on-the-fly task.

      … but I’m wondering… maybe we could just apply the translate3d() to elements one by one at start-up and remove it right after. It might be enough to let the renderer cache the out-of-the-screen elements. I’ll try this later today.

      • Author: Matteo Spinelli
      • Posted on: 2010/09/05
      • At: 14:15

      Update: unfortunately setting and unsetting the webkit-transform does not work.

    • Author: L0L
    • Posted on: 2010/09/17
    • At: 02:59

    What about applying it on the next three elements rather than all?

      • Author: L0L
      • Posted on: 2010/09/17
      • At: 03:44

      Thinking about it now, for smaller things (like a thumbnail sized image), maybe making the image a sprite might be better? I guess it depends on the image you’re trying to use if it’s worth the performance trade off

      • Author: Matteo Spinelli
      • Posted on: 2010/09/17
      • At: 10:13

      should be applied to all upper most element in the tree. Eg:

      DIV —-> UL —-> LI —–> SPAN

      just to the span.

    • Author: Russell
    • Posted on: 2010/09/18
    • At: 08:53

    I want to know is there away to do what many applications like twitter and seesmic do, when you scroll up to the very very top and release it loads new data?

      • Author: Matteo Spinelli
      • Posted on: 2010/09/18
      • At: 10:36

      sure of course it’s possible… must be coded, but definitely possible spacer it would be an interesting tutorial.

    • Author: kris
    • Posted on: 2010/10/25
    • At: 16:39

    Great post. Your QR code on the main project page has me spoilt, it would be nice for these examples too spacer

    Also, it looks like you have a typo on 153 on noflickering.html.

    • Author: JGG
    • Posted on: 2010/12/03
    • At: 13:48

    Thanks for sharing! This flicker thing is really annoying! Doing animations with JavaScript is not as smooth as webkit-transform, but it’s better than the flickering … spacer

    • Author: Rudiger
    • Posted on: 2011/03/16
    • At: 20:17

    How would you use event listeners instead on inline onclick?

    stackoverflow.com/questions/5330553/list-of-links-using-event-listeners-to-keep-my-html-structure-as-simple-as-possi

    • Author: Dean
    • Posted on: 2011/03/25
    • At: 04:50

    Thanks for this info. I have tried to apply this to https://gist.github.com/333492 but it doesn’t seem to make a difference. I changed line #2 to:

    var strAngle = “translate3d(0,0,0) rotate(” + angle + “rad)”;

    Any help is appreciated thanks.

    • Author: Dean
    • Posted on: 2011/03/25
    • At: 05:22

    Never mind. I realised I needed to have a transition applied. In fact, I believe the pendulum can be entirely CSS3 with no JavaScript so I’ll keep hacking away at that.

    • Author: Thomas
    • Posted on: 2011/05/01
    • At: 15:54

    Wow, exactly the thing I was searching for!

    Thx for your blog posting spacer

    • Author: Nizzy
    • Posted on: 2011/09/01
    • At: 20:10

    You have a spelling error in your css selector property.

    -webkit-ransition-duration

  • Pingback: Holiday Homes Complete « Lief's Project Blog
    • Author: Alexandre Gaigalas
    • Posted on: 2012/07/27
    • At: 19:28

    Didn’t like that onclick thing. If you’re sacrificing semantics over performance, why not ommit the ul and li tags and put a lot of a tags inside a plain div?

    Good old plain links are still better than onclicks. You can style them uniformly, the user can open it in a new tab, search engines can calculate page ranks and so on.

    • Author: Kyle
    • Posted on: 2012/08/01
    • At: 03:19

    Thank you!!! I’ve been trying to solve this for about 10 hours. Much appreciated, worked perfectly.

gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.