Can CSS Be Used to Style Mouseover Effects on Image Maps?
Creating a webpage with an image that includes links can be achieved using an image map. However, adding a touch of interactivity by styling the area shapes on mouseover can enhance the user experience. Is this possible using CSS?
Let's consider the following code:
<img src="/static/imghwm/default1.png" data-src="{main_photo}" class="lazy" alt="locations map" usemap="#location-map"> <map name="location-map"> <area shape="rect" coords="208,230,290,245" href="%7Bsite_url%7Dlocations/grand_bay_al"> <area shape="rect" coords="307,214,364,226" href="%7Bsite_url%7Dlocations/mobile_al"> <area shape="rect" coords="317,276,375,290" href="%7Bsite_url%7Dlocations/loxley_al"> </map>
area { border: 1px solid #d5d5d5; }
Despite attempts, this code fails to style the area shapes on mouseover.
CSS-Only Solution:
Instead of using the image map approach, an alternative method using CSS's :hover pseudo-class is available. Here's an example:
<div class="area"></div> <div class="area"></div> <img src="/static/imghwm/default1.png" data-src="image.jpg" class="lazy" alt="Can CSS Be Used to Style Mouseover Effects on Image Maps?" >
.area { background: #fff; display: block; height: [desired height]; opacity: 0; position: absolute; width: [desired width]; } .area:hover { opacity: 0.2; }
Explanation:
- The image is placed at the bottom layer.
- Two div elements are positioned absolutely on top of the image with an opacity of 0.
- When the mouse hovers over these div elements, the opacity increases to 0.2, revealing the content behind them.
This method provides a simple and elegant way to add mouseover effects to specific areas of an image using CSS.
The above is the detailed content of Can CSS Be Used to Style Mouseover Effects on Image Maps?. For more information, please follow other related articles on the PHP Chinese website!

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
