I've narrowed down my issue to a fairly simple case. This works (in Chrome, at least), displaying a "pop-up" which is mostly off-screen, with a slice of the right hand side on screen. When I hover over the visible part, the whole pop-up slides into view:

<!DOCTYPE html>
<html>
<head>
  <title>Popout test</title>
  <style>
  #popout {
    -webkit-transition: left 0.5s ease-in-out;
    width: 200px;
    height: 200px;
    background-color: #cde;
    border: 4px solid black;
    padding: 4px;
    left: -180px;
    position: absolute;
    top: 250px;

  }

  #popout:hover {
    left: -4px;
  }  
  </style>
</head>
<body>
  <div id="popout">This is a test</div>
</body>
</html>

However, if I then move that exact CSS into an external stylesheet:

<!DOCTYPE html>
<html>
<head>
  <title>Popout test</title>
  <link rel="stylesheet" href="popout.css" />
</head>
<body>
  <div id="popout">This is a test</div>
</body>
</html>

popout.css:

#popout {
    -webkit-transition: left 0.5s ease-in-out;
    width: 200px;
    height: 200px;
    background-color: #cde;
    border: 4px solid black;
    padding: 4px;
    left: -180px;
    position: absolute;
    top: 250px;

}

#popout:hover {
  left: -4px;
}  

...the effect remains the same, but on page load the pop-up appears "popped out" and eases back off screen. With the style directly in a <style> in the html page, as in the first example, this doesn't happen; the pop-up starts "off screen", i.e. at left: -180px as I would expect.

I'm wondering if this is a "flash of unstyled content", with the added annoyance that because of the transition effect, it's actually a very obvious, slow effect?

Can anyone tell me for sure why this happens, and what's the least hacky way to avoid it?

Because of the way jsfiddle works, I can't reproduce the problem there, unfortunately.

link|improve this question

Your HTML is broken, check it is nothing to do with that first. <div id="popout">This is a test</a> - it should be <div id="popout">This is a test</div> – Kinlan Jun 17 '11 at 14:25
@Kinlan Ooops, good point. That's an artifact of me simplifying down to my example; the original code is valid. I've corrected the question. It doesn't affect the problem. – Matt Gibson Jun 17 '11 at 14:56
1  
I tried your sample and it works ok with external stylesheet or without it in chrome. What version of chrome are you using? – easwee Jun 17 '11 at 15:10
1  
Might be the load time is just to small on localhost? But i tried to upload the sample on my hosting and it still works ok: easwee.net/test123/HTMLPage.htm My version is 11.0.696.68. – easwee Jun 17 '11 at 15:33
1  
@Matt Gibson - i tried on another pc with latest Chrome fresh instal and it does not happen. No idea what could mess it. Tried in other webkit browsers and it also works ok. – easwee Jun 18 '11 at 17:11
show 4 more comments
feedback

2 Answers

up vote 3 down vote accepted

Thanks, @easwee, for help in confirming what the problem wasn't :) I've now tracked down what's causing the problem. It was the AdBlock extension for Chrome. If I disable this extension, I don't see the problem.

In case it's helpful for anyone else tracking down this problem, you can quickly test to see if an extension is causing an issue by using a new "Incognito" window -- all extensions are disabled for Icognito windows in Chrome.

link|improve this answer
I can confirm that this is not just AdBlock, but Chrome itself. Whether or not it's actually showing a flash of un-styled content, I'm not sure, but I've tested this on Mac in Chrome v12 (current stable) and v14 (current canary) with and without extensions, in and outside of Incognito mode. In Safari it never happens (maybe because Safari delays the render until the CSS is loaded?) – pattern86 Jun 30 '11 at 19:28
It's true that certain extensions in Chrome can cause this to happen repeatedly on refreshes, but when loading the page for the first time, this always happens without a cached stylesheet. Should this be filed as a bug with the Chromium project? – pattern86 Jun 30 '11 at 19:28
@pattern86 Oh, so you're seeing it regardless? Interesting. I've just tried using @easwee's test page, and it definitely isn't happening for me in 13.0.782.31 with AdBlock turned off. Haven't tried with other versions yet. If you can reproduce it without extensions, then yes, I guess it's a Chrome bug, though it seems to be a slippery one... Might try with Chrome 14 later, and see what happens there. – Matt Gibson Jul 1 '11 at 6:51
Yeah, I'm getting it with his example in incognito mode in both versions. – pattern86 Jul 2 '11 at 4:28
feedback

Could this be a solution?

http://css-tricks.com/transitions-only-after-page-load/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.