Clicking thumbnails to get enlarged image

Nathan Joshua

New Member
I would suggest using hover events for something like this. It can easily be done with CSS/HTML without having to resort to the onClick="event"

CSS
Code:
.hoverbox{
cursor: default;
list-style: none;
}
.hoverbox a{
cursor: default;
}
.hoverbox a .preview{
display: none;
}
.hoverbox a:hover .preview{
display: block;
position: absolute;
top: 300px;
left: 0px;
z-index: 1;
}
.hoverbox img{
vertical-align: top;
width: 90px;
height: 90px;
}
.hoverbox li{
color: inherit;
display: inline;
float: left;
margin: 3px;
position: relative;
border: 1px solid #000000;
}
.hoverbox .preview{
margin-top: -324px;
margin-left: 494px;
width: 430px;
height: 430px;
border: 1px solid #000000;
}
.hoverbox .preview2{
margin-top: -324px;
margin-left: 396px;
width: 430px;
height: 430px;
border: 1px solid #000000;
}
.hoverbox a .preview2{
display: none;
}
.hoverbox a:hover .preview2{
display: block;
position: absolute;
top: 300px;
left: 0px;
z-index: 1;
}
.hoverbox .preview3{
margin-top: -324px;
margin-left: 298px;
width: 430px;
height: 430px;
border: 1px solid #000000;
}
.hoverbox a .preview3{
display: none;
}
.hoverbox a:hover .preview3{
display: block;
position: absolute;
top: 300px;
left: 0px;
z-index: 1;
}


HTML
Code:
<ul class="hoverbox">
<li>
<a href="#"><img src="1.jpg" alt="description" /><img src="1.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="2.jpg" alt="description" /><img src="2.jpg" alt="description" class="preview2" /></a>
</li>
<li>
<a href="#"><img src="3.jpg" alt="description" /><img src="3.jpg" alt="description" class="preview3" /></a>
</li>

Hope this helps
 
Top