Web Design Forum  
 
Go Back   Web Design Forum > Web and Graphic Design > Web Design

Reply
 
LinkBack Thread Tools Display Modes
Old 12-31-2010, 09:28 PM   #1
New Member
 
Join Date: Dec 2010
Posts: 1
Default Floating image on mouse over link

what I want to do is figure out how to make an imageOver effect where when someone hovers over a link in my menu it will show an image that is larger than the area, like a transparent frame, or a series of stars, so it doesn't distort my menu by having the image larger than the <div> frame. Any thoughts?
Drarkan is offline   Reply With Quote


Old 01-03-2011, 08:24 PM   #2
Super Moderator
 
Join Date: Oct 2008
Location: Arizona, USA
Posts: 1,053
Default

Sure that is possible. Off the top of my head...
HTML Code:
<a href="#" class="float-img">Appear on Hover
   <span>
        This content only appears when a user hovers over the link.</span>
</a>
Code:
a.float-img {
   position:relative;
   overflow:hidden;
   display:block;
   padding:0 10px;
   height:35px;
   line-height:35px;
   text-align:center;
   text-decoration:none;
   font:bold 9pt Arial;
   color:#333;
   background-color:#eaeaea;
   border:solid 1px #cbcbcb;
}
a.float-img span {
   position:absolute;
   top:-120px;
   right:-100px;
   display:block;
   width:75px;
   height:100px;
   padding:10px;
   line-height:14px;
   font:italic 8pt Arial;
   color:#fff;
   background-color:#f00;
}
a.float-img:hover {
   overflow:visible;
   background-color:#ababab;
   color:#222;
}
__________________
John Darling
Graphic / Web Designer
SmarterTools Inc.
(877) 357-6278
www.smartertools.com
PixelPusher is offline   Reply With Quote
Reply

Tags
image effects, images, menu

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 06:01 PM.


Camera Forum - Computer Forum - Web Design Forum

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.