Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-03-2012, 02:50 PM   PM User | #1
Ax3l
New Coder

 
Join Date: Aug 2012
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Ax3l is an unknown quantity at this point
Setting background image onmouseover/hover.

I have a container div that has a number of images in it. What I am trying to do is give each image a "wrapper" on a mouseover or hover by setting a background image that will extend beyond the height and width of the images. What I want is for a background image to be set dynamically depending on what image the mouse is over.

I've read that there might be something I can do with the anchor tag.

So is there any way that I can set a background image dynamically?

Last edited by Ax3l; 12-03-2012 at 06:24 PM..
Ax3l is offline   Reply With Quote
Old 12-03-2012, 03:17 PM   PM User | #2
coothead
Senior Coder

 
coothead's Avatar
 
Join Date: Jan 2004
Location: chertsey, a small town 25 miles south west of london, england.
Posts: 1,555
Thanks: 0
Thanked 196 Times in 192 Posts
coothead will become famous soon enough
Hi there Ax3l,

no need for javascript, CSS will do the trick.

Here is a basic example...
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>

<base href="http://www.coothead.co.uk/images/">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="english"> 
<meta http-equiv="Content-Style-Type" content="text/css">

<title></title>

<style type="text/css">
body {
    background-color:#f0f0f0;
 }
#image0 {
    display:block;
    width:100px;
    height:100px;
    padding:20px;
    margin:auto;
    border:1px solid transparent;
    cursor:pointer;
 }
#image0:hover {
    border-color:#909;
    background-image:url(anim2.gif);
    background-position:center center;
    box-shadow:4px 4px 4px #999;
 }
</style>

</head>
<body>

<div>
 <img id="image0" src="anim1.gif" alt="">
</div>

</body>
</html>
coothead
coothead is offline   Reply With Quote
Old 12-03-2012, 06:23 PM   PM User | #3
Ax3l
New Coder

 
Join Date: Aug 2012
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Ax3l is an unknown quantity at this point
Very simple, thank you.
Ax3l is offline   Reply With Quote
Old 12-03-2012, 06:29 PM   PM User | #4
coothead
Senior Coder

 
coothead's Avatar
 
Join Date: Jan 2004
Location: chertsey, a small town 25 miles south west of london, england.
Posts: 1,555
Thanks: 0
Thanked 196 Times in 192 Posts
coothead will become famous soon enough

No problem, you're very welcome.

coothead
coothead is offline   Reply With Quote
Reply

Bookmarks

Tags
background, dynamic, hover, image, mouseover

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:25 PM.


Advertisement
Log in to turn off these ads.