When setting up a rollover effect in HTML, are there any benefits (or pitfalls) to doing it in CSS vs. JavaScript? Are there any performance or code maintainability issues I should be aware of with either approach?
|
4
|
|
|
|
|
|
CSS is fine for rollovers. They're implemented basically using the
There are a few things you need to be aware of though:
The It's pretty simple, the core principle is that you create an image larger than the element, set the image as a background image, and position it using
Note that using this 'sprites' technique means that you will be unable to use alpha-transparent PNGs with IE6 (as the only way IE6 has to render alpha-transparent PNGs properly uses a special image filter which don't support |
||||||||||
|
|
|
I'd stay on the CSS side of the house, but I've done very little Javascript. CSS seems to be easier to standardize across browsers than Javascript, though that may be changing with the advent of Chrome's V8 and Firefox's upcoming new rendering tool. |
||
|
|
|
|
Because it's an aspect of presentation, I'd say it's more standards based to do it with CSS. It used to be done in Javascript, simply because we couldn't do it with CSS (old browsers suck, and I don't think :hover was even added until CSS 2). |
||
|
|
|
|
It will still work in CSS if the browser happens to have Javascript disabled. |
||
|
|
|
|
Implementing a rollover with CSS uses the :hover pseudo-class to define the style of the target element when it is hovered over. This works great in many browsers but not in IE6 where it only works well with the anchor tag (i.e. a:hover). I used CSS hover to implement a tabbed navigation bar but had to use IE behaviors to get it working in IE6. |
||
|
|
|
|
Isn't there a mnemonic for remembering the sequence of declarations in CSS? |
||
|
|
|
|
Yep, the best way to do this is css sprites. An annoying problem occurs in IE6, when browser make a request every time an element is hovered. To fix this, take a look here. |
||
|
|
