Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to achieve a rollover effect similar to what is used here: http://www.blackboxpress.co.uk/

You will notice rolling over the images displays further information.

Would you know of any good tutorials using jquery that I can use for a basis to achieve this?

Many thanks

PS. Im not looking for a JS image replacement

share|improve this question
1  
The further information appears to be another image; so all the JavaScript is doing is replacing the image. Try this: jdstiles.com/java/hoverchangeimage.html – Scoop Jan 6 '11 at 12:23
It can be done easily with css. Use google... – nebkat Jan 6 '11 at 12:23

1 Answer

check out css sprites heres a rough example, you need to make the image yourself Theres more information on sprites here css sprites and no need to use jquery for this (sample.jpg needs to be 80px w x 40px h)

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<style type="text/css">

.swapper{
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background: url(sample.jpg);
    }

.swapper:hover {
    background: url(sample.jpg) -40px;
    background-position: -40px 0;
    }
</style>
</head>

<body>

<div class="swapper"></div>

</body>
</html>
share|improve this answer
This is using images though right? Not really the solution I was after – Rob Jan 6 '11 at 14:05
@Rob - the site you linked to as an example is using images. – Spudley Jan 6 '11 at 17:04
ahh bugger! sorry I would like to do it without images and can't find an example – Rob Jan 9 '11 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.