I think it's quite likely the answer is no, but someone might know something I don't.

I've got an image gallery with sorting buttons that, when clicked, sorted the gallery in an animated style using Isotope. Each image has a nice box-shadow around it, but the animation is sluggish and jerky, due to having to render the shadow all the time.

My question is this: Is there a way to speed up box shadow without changing the blur radius, etc?

link|improve this question

Is it slow in only one browser, or is it equally slow in all browsers? – thirtydot Jul 18 '11 at 15:26
It's worst in Opera where I'm getting what looks like ~10-15FPS (very laggy), then comes Firefox with only a slight jumpiness. Chrome renders it perfectly and smoothly. – JamWaffles Jul 18 '11 at 15:30
feedback

1 Answer

up vote 1 down vote accepted

I suspect there's no way to speed it up.

Have you considered toggling off the box-shadow while the animation is running?

Does the box-shadow use an rgba colour with transparency? Maybe it would be faster without transparency.

link|improve this answer
It just uses a bog standard #aabbcc colour code. I could turn the shadow off when animating, but I've chosen to just leave the shadow out for browsers that aren't Chrome, seeing as it has the fastest animation by far. – JamWaffles Jul 18 '11 at 16:41
feedback

Your Answer

 
or
required, but never shown

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