Posted by Ben C on 11/18/92 12:00
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 :)
Navigation:
[Reply to this message]
|