CPUNut
10-19-2008, 09:14 PM
I have seen a popup image script (cant recal the site) that once you click on a thumbnail the image will pop up and load and the background (page of thumbs) will turn dark.
Anyone have its source? It may be flash based.
Thanks
GNAX - Terrence
10-19-2008, 09:49 PM
Here you go: http://www.huddletogether.com/projects/lightbox/
ThatScriptGuy
10-20-2008, 02:15 AM
lightbox, greybox, thickbox, slimbox...
There are TONS of those type scripts out there...
RichardPerez
10-20-2008, 03:04 AM
http://www.lokeshdhakar.com/projects/lightbox2/
There you are.
CPUNut
10-20-2008, 08:32 PM
Thats it!
thanks :)
I think it beats the old click on a thumbnail and go to another html page with the full size image. What do you guys think?
RichardPerez
10-20-2008, 09:04 PM
Of course it beats that old way :)
jasper_
10-20-2008, 09:25 PM
I love it, when its set to animate fast. Otherwise after a bunch of images, it can get quite annoying to see the viewer in- and decrease in size all the time.
websushil
10-21-2008, 08:31 AM
What ?? you love it!!??
well if it comes on your desktop than why you don't leave it just click on cancel button and close it. simple:)
jasper_
10-21-2008, 08:21 PM
I really have no clue what you mean, but that's probably because you generally have no clue what this thread's about ;)
websushil
11-03-2008, 07:44 AM
That's source may like this
<!--[if gte IE 5.5000]>
<style type="text/css">
.shadowcss{
position: relative;
top: -5px;
left: -5px;
filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='gray', Positive='true');
}
</style>
<![endif]-->
<script type="text/javascript">
/***********************************************
* Pop-it Image script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
function updownshadow(){
if (event.srcElement.effect=="popshadow"){
shadowobj=event.srcElement
if (event.type=="mousedown"){
shadowobj.filters[0].color=shadowobj.mousedowncolor
shadowobj.style.left=shadowobj.style.top=0
}
else if (event.type=="mouseout" && event.fromElement.effect=="popshadow" || event.type=="mouseup"){
shadowobj.filters[0].color=shadowobj.mouseupcolor
shadowobj.style.left=shadowobj.style.top=shadowobj.filters[0].OffX*(-1)
}
}
}
if (document.attachEvent){
document.attachEvent("onmousedown", updownshadow)
document.attachEvent("onmouseup", updownshadow)
document.attachEvent("onmouseout", updownshadow)
}
</script>
Outlaw Web Master
11-03-2008, 08:01 AM
I love it, when its set to animate fast. Otherwise after a bunch of images, it can get quite annoying to see the viewer in- and decrease in size all the time.
hmm..i never have that problem as I tend to make all the images the same size.
it looks more professional. ;)
owm