Topic awaiting preservation: IE 5.x+ "slow" :hover performance (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: schillmania.com |
posted 02-02-2004 05:32
Maybe it's just my computer (I would hope not), but on some CSS-heavy sites I've noticed that menus using :hover pseudoclasses redraw (change state) very slowly - taking 0.5 seconds when it should be practically instantaneous. |
Paranoid (IV) Inmate From: Northumberland, England |
posted 02-02-2004 06:55
I haven't noticed a huge problem with css on it's own - but I know that css (especially in IE) has quite a large knock on effect on javascript functions - I have been fiddling with image scrollers for about year now and I have noticed that their responsiveness, smoothness and speed are hammered if a lot of css effects are happenin or if if I'm trying to scroll elements with css applied on them. I would agree that background image is a big cpu drainer, however I've never noticed a large problem with css borders. |
Nervous Wreck (II) Inmate From: Utreg, NL |
posted 02-02-2004 09:12
IE has a bug where it reloads background images on elements when you do certain things with css/script, that's what makes it slow. For instance, moving an absolutely positioned element around, showing/hiding elements (or toggling display between block/none). I suspect that about anything will reload the images. Maybe if you use the images as list-style-image that they might stay put... haven't tried that yet. |
Bipolar (III) Inmate From: schillmania.com |
posted 02-03-2004 01:40
Ah-ha, good points from both of you. |