Christian Heilmann

Pure mouse independent CSS popups?

Monday, January 31st, 2005 at 11:23 am

A lot of people cherish the pure CSS popups technique published by Eric Meyer in the long long ago.

The only problem with these is that they are not accessible. While screen readers and browsers without CSS happily display the texts, users without a mouse have no chance to get to the content of the spans embedded in the links.

What we can do though is use Javascript to check if a mouse is available, and make our CSS dependent on a class set to the body if that is the case:

CSS:

body.mouseenabled a span{
position:absolute;
left:-999em;
}

body.mouseenabled a:hover{
color:#fff;
}

body.mouseenabled a:hover span{
position:relative;
left:0;
}


Javascript

window.onload=function()
{

if(!document.getElementById || !document.createElement){return;}
document.body.onmousemove=function()
{

if(!/bmouseenabledb/.test(document.body.className))
{

this.className+=this.className?' mouseenabled':'mousenabled';
}

}
}

See it in action here.

Benefits:

  • Keyboard accessible

Drawbacks:

  • The popups are visible until the user moves the mouse.
  • Visitors need Javascript enabled to see the effect.

Share on Mastodon (needs instance)

Share on Twitter

Newsletter

Check out the Dev Digest Newsletter I write every week for WeAreDevelopers. Latest issues:

Dev Digest 145: ⌨️ The best IDEs 🥷🏼 the fight for JS ✊🏽 OSS success

Advent calendars, Ode to free software, how to staet an OSS company and a a truly rocking license.  Join us on the AI and Webdev event 10/12

Dev Digest 146: 🥱 React fatigue 📊 Query anything with SQL 🧠 AI News

Why it may not be needed to learn React, why Deepfake masks will be a big problem and your spirit animal in body fat! 

Dev Digest 147: Free Copilot! Panel: AI and devs! RTO is bad! Pi plays!

Free Copilot! Experts discuss what AI means for devs. Don't trust containers. Mandated RTO means brain drain. And Pi plays Pokemon!

Dev Digest 148: Behind the scenes of Dev Digest & end of the year reports.

In 50 editions of Dev Digest we gave you 2081 resources. Join us in looking back and learn about all the trends this year.

Dev Digest 149: Wordpress break, VW tracking leak, ChatGPT vs Google.

Slowly starting 2025 we look at ChatGPT vs Google, Copilot vs. Cursor and the state of AI crawlers to replace web search…

My other work: