When I try to apply jQuery animate method to the float block near the one with box-shadow, some artifacts take a place in the WebKit (i'm testing in the Chrome 18 & 19).

box-shadow artifact

Test case: http://jsfiddle.net/JxBKM/

Are anybody knows how to prevent this?

link|improve this question

not sure what artifacts take place... can you be more specific as to the issue? – agrublev Feb 22 at 22:16
1  
Basically it's the skipping of the shadow. It's like it's not fully refreshing the animation. I get the problem. The problem is not as noticeable when the animation is sped up. – thepriebe Feb 22 at 22:20
feedback

1 Answer

up vote 1 down vote accepted

So I updated your fiddle to include the animate:complete function. Basically it's a function called when the animation is completed. The fiddle I put together only works on the first time it's called though, because it's setting the background to something different than it initially was. For whatever reason Chrome doesn't want to do the animation then set the CSS again. Take a look and you'll see what I mean. It works the first time, but not subsequent attempts.

I recommend going with an image for box-shadow, or refining the fiddle to reset it every time rather than on the first time.

link|improve this answer
thanks for explanation. – Phillip Kovalev Feb 22 at 23:21
feedback

Your Answer

 
or
required, but never shown

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