Need help with an effect I want on my homepage

leroy30

New Member
Hmm you could either split the image in to pieces and make each piece a link with a hover effect or you could use the map tag (http://www.w3schools.com/tags/tag_map.asp)

Here is an example of a (very) simple hover effect...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<style type="text/css">
.button {background: blue; width:100px; height:20px;}
.button:hover {background: white;}
</style>
</head>
<body>
<div class="button">My Button</div>
</body>
</html>
 
Top