Posted by richard on 09/30/02 12:00
"Ben C" <spamspam@spam.eggs> wrote in message
news:slrnehsckb.9i3.spamspam@bowser.marioworld...
> On 2006-09-30, richard <don@john.son> wrote:
>> http://www.oswd.org/design/preview/id/2849
>>
>> When moving mouse over the 3 small images, another larger one pops up.
>> As I did not see any specific JS in the source, am I assuming correctly
>> that
>> xhtml can emulate this effect?
>> I haven't been able to look at the CSS yet. Just curious.
>
> You can use the :hover pseudo for this:
>
> .large
> {
> visibility: hidden;
> }
>
> .small:hover .large
> {
> visibility: visible;
> }
>
> that kind of thing.
>
> I haven't looked at their CSS either :)
I did look in the CSS and it is in the hover. Apparently just replacing the
image with a larger one.
[Back to original message]
|