View Full Version : recreate Google Images New Look
lilpete
08-19-2010, 01:03 PM
Hi guys,
Me again with another problem.. :S
I am building on this page:- http://www.test.steptoes.co.uk/el-naturalista.ghtml
(Which is just one of the many index pages on the new website)
I have put a bit of css to give a window on hover on each item,
this displays a slightly larger image with the size range and bits and bobs.
Is there any way I can get it to react a bit more like the new Google images system.
I like this as it is quite slick and easy to use.
http://www.google.co.uk/images?hl=en&source=imghp&biw=1206&bih=894&q=yellowstone&gbv=2&aq=f&aqi=g10&aql=&oq=&gs_rfai=
So I would like a little pause on hover, then have it pop up with a slightly bigger image and some details.
So one question would be: any idea how Google are doing that?
And the 2nd question would be: how would I recreate that on my website?
Thanks for your time.
Best Regards,
Pete
connor4312
08-21-2010, 05:42 AM
Like I said in my last post, use jQuery .animate(). I'll look at your code a post a snippet in a minute...
connor4312
08-21-2010, 05:51 AM
<script type="text/javascript">
$(function() {
function runEffect(){
$(".yourclass").show("scale",{percent: 25};},500,callback);
};
function callback(){
//whatever
};
});
</script>
You would want the jQuery UI plugin too for the scale effect.
You have lots of code and it would take a while for me to find out what did want, so you'll have to plug in your own stuff.
vwphillips
08-21-2010, 02:02 PM
<!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" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
.indexitem {
position:relative;width:200px;text-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
.popoutdiv {
position:absolute;visibility:hidden;left:-25px;top:-20px;width:250px;background-Color:#FFFFCCtext-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
/*]]>*/
</style>
<script type="text/javascript">
// Animate (11-January-2010)
// by Vic Phillips http://www.vicsjavascripts.org.uk
// To progressively change the Left, Top, Width, Height or Opacity of an element over a specified period of time.
// With the ability to scale the effect time on specified minimum/maximum values
// and with three types of progression 'sin' and 'cos' and liner.
// **** Application Notes
// **** The HTML Code
//
// when moving an element the inline or class rule style position of the element should be assigned as
// 'position:relative;' or 'position:absolute;'
//
// The element would normally be assigned a unique ID name.
//
// **** Initialising the Script.
//
// The script is initialised by assigning an instance of the script to a variable.
// e.g A = new zxcAnimate('left','id1')
// where:
// A = a global variable (variable)
// parameter 0 = the mode(see Note 1). (string)
// parameter 1 = the unique ID name or element object. (string or element object)
// parameter 1 = the initial value. (digits, default = 0)
// **** Executing the Effect
//
// The effect is executed by an event call to function 'A.animate(10,800 ,5000,[10,800]);'
// where:
// A = the global referencing the script instance. (variable)
// parameter 0 = the start value. (digits, for opacity minimum 0, maximum 100)
// parameter 1 = the finish value. (digits, for opacity minimum 0, maximum 100)
// parameter 2 = period of time between the start and finish of the effect in milliseconds. (digits or defaults to previous or 0(on first call) milliSeconds)
// parameter 3 = (optional) to scale the effect time on a specified minimum/maximum. (array, see Note 3)
// field 0 the minimum value. (digits)
// field 1 the maximum value. (digits)
// parameter 3 = (optional) the type of progression, 'sin', 'cos' or 'liner'. (string, default = 'liner')
// 'sin' progression starts fast and ends slow.
// 'cos' progression starts slow and ends fast.
//
// Note 1: Examples modes: 'left', 'top', 'width', 'height', 'opacity.
// Note 2: The default units(excepting opacity) are 'px'.
// For hyphenated modes, the first character after the hyphen must be upper case, all others lower case.
// Note 3: The scale is of particular use when re-calling the effect
// in mid progression to retain an constant rate of progression.
// Note 4: The current effect value is recorded in A.data[0].
// Note 5: A function may be called on completion of the effect by assigning the function
// to the animator intance property .Complete.
// e.g. [instance].Complete=function(){ alert(this.data[0]); };
//
// **** Functional Code(1.52K) - NO NEED to Change
function zxcAnimate(mde,obj,srt){
this.to=null;
this.obj=typeof(obj)=='object'?obj:document.getElementById(obj);
this.mde=mde.replace(/\W/g,'');
this.data=[srt||0];
return this;
}
zxcAnimate.prototype={
animate:function(srt,fin,ms,scale,c){
clearTimeout(this.to);
this.time=ms||this.time||0;
this.neg=srt<0||fin<0;
this.data=[srt,srt,fin];
this.mS=this.time*(!scale?1:Math.abs((fin-srt)/(scale[1]-scale[0])));
this.c=typeof(c)=='string'?c.charAt(0).toLowerCase():this.c?this.c:'';
this.inc=Math.PI/(2*this.mS);
this.srttime=new Date().getTime();
this.cng();
},
cng:function(){
var oop=this,ms=new Date().getTime()-this.srttime;
this.data[0]=(this.c=='s')?(this.data[2]-this.data[1])*Math.sin(this.inc*ms)+this.data[1]:(this.c=='c')?this.data[2]-(this.data[2]-this.data[1])*Math.cos(this.inc*ms):(this.data[2]-this.data[1])/this.mS*ms+this.data[1];
this.apply();
if (ms<this.mS) this.to=setTimeout(function(){oop.cng()},10);
else {
this.data[0]=this.data[2];
this.apply();
if (this.Complete) this.Complete(this);
}
},
apply:function(){
if (isFinite(this.data[0])){
if (this.data[0]<0&&!this.neg) this.data[0]=0;
if (this.mde!='opacity') this.obj.style[this.mde]=Math.floor(this.data[0])+'px';
else zxcOpacity(this.obj,this.data[0]);
}
}
}
function zxcOpacity(obj,opc){
if (opc<0||opc>100) return;
obj.style.filter='alpha(opacity='+opc+')';
obj.style.opacity=obj.style.MozOpacity=obj.style.WebkitOpacity=obj.style.KhtmlOpacity=opc/100-.001;
}
</script>
</head>
<body>
<center>
<br /><br /><br />
<div class="indexitem">
<img src="http://www.test.steptoes.co.uk//images/icons/el-naturalista-index.jpg" border="0" align="top" alt="El-Naturalista" /> <br />
<a class=popout href="product-display_El-Naturalista-N928_dGFibGU9cHJvZHVjdCZmaWVsZD1Db2RlMSZ2YWx1ZT1OOTI4.ghtml">
<img src="http://www.test.steptoes.co.uk//product/index/N928-Brown.jpg" border="0" alt="Recy Clus Ella" vspace="5" />
<div class="popoutdiv" >
<img src=http://www.test.steptoes.co.uk//product/thumbs/N928-Brown.jpg border=0 alt=El-Naturalista Recy Clus Ella />
<br />El-Naturalista Recy Clus Ella - Brown <br />Sizes: 36,37,38,39,40,41<br />More Colours Available
</div>
</a>
</div>
</center>
<script type="text/javascript">
/*<![CDATA[*/
function zxcShow(o){
var items=zxcByClassName(o.ClassName)
for (var a,div,z0=0;z0<items.length;z0++){
a=items[z0].getElementsByTagName('A')[0];
div=items[z0].getElementsByTagName('DIV')[0];
if (a&&div){
new zxcShowAnimate(items[z0],a,div,o.Duration);
}
}
}
function zxcShowAnimate(item,a,div,ms){
this.ooop=new zxcAnimate('opacity',div,0);
this.ooop.Complete=function(){
if (this.data[0]==0){
this.obj.style.visibility='hidden';
}
}
this.ms=ms||1000;
this.addevt(item,'mouseover','show');
this.addevt(div,'mouseover','show');
this.addevt(div,'mouseout','hide');
}
zxcShowAnimate.prototype={
show:function(){
clearTimeout(this.to);
this.ooop.obj.style.visibility='visible';
this.ooop.animate(this.ooop.data[0],100,this.ms);
},
hide:function(){
var oop=this;
this.to=setTimeout(function(){
oop.ooop.animate(oop.ooop.data[0],0,this.ms);
},200);
},
addevt:function(o,t,f,p){
var oop=this;
if (o.addEventListener) o.addEventListener(t,function(e){ return oop[f](e,p);}, false);
else if (o.attachEvent) o.attachEvent('on'+t,function(e){ return oop[f](e,p); });
}
}
function zxcByClassName(nme,el,tag){
if (typeof(el)=='string') el=document.getElementById(el);
el=el||document;
for (var tag=tag||'*',reg=new RegExp('\\b'+nme+'\\b'),els=el.getElementsByTagName(tag),ary=[],z0=0; z0<els.length;z0++){
if(reg.test(els[z0].className)) ary.push(els[z0]);
}
return ary;
}
zxcShow({
ClassName:'indexitem',
Duration:1000
});
/*]]>*/
</script></body>
</html>
lilpete
08-23-2010, 09:14 AM
Hey,
That looks sweet, I need to get myself up to date on this jQuery and Javascript,
thats awesome, I might try and figure out how to speed the animation a bit just to aid the users flow on the site..
But thanks soo much for that! Spot on.. :D
lilpete
08-23-2010, 11:42 AM
Thanks man, looks sweet and Ive managed to intergrate it ok...
One teeny little thing, any chance of a pause just before it activates, or is that too difficult to achieve?
Thanks for you help on this one, really appreciate it!
vwphillips
08-23-2010, 03:33 PM
<!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" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
.indexitem {
position:relative;width:200px;text-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
.popoutdiv {
position:absolute;visibility:hidden;left:-25px;top:-20px;width:250px;background-Color:#FFFFCCtext-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
/*]]>*/
</style>
<script type="text/javascript">
// Animate (11-January-2010)
// by Vic Phillips http://www.vicsjavascripts.org.uk
// To progressively change the Left, Top, Width, Height or Opacity of an element over a specified period of time.
// With the ability to scale the effect time on specified minimum/maximum values
// and with three types of progression 'sin' and 'cos' and liner.
// **** Application Notes
// **** The HTML Code
//
// when moving an element the inline or class rule style position of the element should be assigned as
// 'position:relative;' or 'position:absolute;'
//
// The element would normally be assigned a unique ID name.
//
// **** Initialising the Script.
//
// The script is initialised by assigning an instance of the script to a variable.
// e.g A = new zxcAnimate('left','id1')
// where:
// A = a global variable (variable)
// parameter 0 = the mode(see Note 1). (string)
// parameter 1 = the unique ID name or element object. (string or element object)
// parameter 1 = the initial value. (digits, default = 0)
// **** Executing the Effect
//
// The effect is executed by an event call to function 'A.animate(10,800 ,5000,[10,800]);'
// where:
// A = the global referencing the script instance. (variable)
// parameter 0 = the start value. (digits, for opacity minimum 0, maximum 100)
// parameter 1 = the finish value. (digits, for opacity minimum 0, maximum 100)
// parameter 2 = period of time between the start and finish of the effect in milliseconds. (digits or defaults to previous or 0(on first call) milliSeconds)
// parameter 3 = (optional) to scale the effect time on a specified minimum/maximum. (array, see Note 3)
// field 0 the minimum value. (digits)
// field 1 the maximum value. (digits)
// parameter 3 = (optional) the type of progression, 'sin', 'cos' or 'liner'. (string, default = 'liner')
// 'sin' progression starts fast and ends slow.
// 'cos' progression starts slow and ends fast.
//
// Note 1: Examples modes: 'left', 'top', 'width', 'height', 'opacity.
// Note 2: The default units(excepting opacity) are 'px'.
// For hyphenated modes, the first character after the hyphen must be upper case, all others lower case.
// Note 3: The scale is of particular use when re-calling the effect
// in mid progression to retain an constant rate of progression.
// Note 4: The current effect value is recorded in A.data[0].
// Note 5: A function may be called on completion of the effect by assigning the function
// to the animator intance property .Complete.
// e.g. [instance].Complete=function(){ alert(this.data[0]); };
//
// **** Functional Code(1.52K) - NO NEED to Change
function zxcAnimate(mde,obj,srt){
this.to=null;
this.obj=typeof(obj)=='object'?obj:document.getElementById(obj);
this.mde=mde.replace(/\W/g,'');
this.data=[srt||0];
return this;
}
zxcAnimate.prototype={
animate:function(srt,fin,ms,scale,c){
clearTimeout(this.to);
this.time=ms||this.time||0;
this.neg=srt<0||fin<0;
this.data=[srt,srt,fin];
this.mS=this.time*(!scale?1:Math.abs((fin-srt)/(scale[1]-scale[0])));
this.c=typeof(c)=='string'?c.charAt(0).toLowerCase():this.c?this.c:'';
this.inc=Math.PI/(2*this.mS);
this.srttime=new Date().getTime();
this.cng();
},
cng:function(){
var oop=this,ms=new Date().getTime()-this.srttime;
this.data[0]=(this.c=='s')?(this.data[2]-this.data[1])*Math.sin(this.inc*ms)+this.data[1]:(this.c=='c')?this.data[2]-(this.data[2]-this.data[1])*Math.cos(this.inc*ms):(this.data[2]-this.data[1])/this.mS*ms+this.data[1];
this.apply();
if (ms<this.mS) this.to=setTimeout(function(){oop.cng()},10);
else {
this.data[0]=this.data[2];
this.apply();
if (this.Complete) this.Complete(this);
}
},
apply:function(){
if (isFinite(this.data[0])){
if (this.data[0]<0&&!this.neg) this.data[0]=0;
if (this.mde!='opacity') this.obj.style[this.mde]=Math.floor(this.data[0])+'px';
else zxcOpacity(this.obj,this.data[0]);
}
}
}
function zxcOpacity(obj,opc){
if (opc<0||opc>100) return;
obj.style.filter='alpha(opacity='+opc+')';
obj.style.opacity=obj.style.MozOpacity=obj.style.WebkitOpacity=obj.style.KhtmlOpacity=opc/100-.001;
}
</script>
</head>
<body>
<center>
<br /><br /><br />
<div class="indexitem">
<img src="http://www.test.steptoes.co.uk//images/icons/el-naturalista-index.jpg" border="0" align="top" alt="El-Naturalista" /> <br />
<a class=popout href="product-display_El-Naturalista-N928_dGFibGU9cHJvZHVjdCZmaWVsZD1Db2RlMSZ2YWx1ZT1OOTI4.ghtml">
<img src="http://www.test.steptoes.co.uk//product/index/N928-Brown.jpg" border="0" alt="Recy Clus Ella" vspace="5" />
<div class="popoutdiv" >
<img src=http://www.test.steptoes.co.uk//product/thumbs/N928-Brown.jpg border=0 alt=El-Naturalista Recy Clus Ella />
<br />El-Naturalista Recy Clus Ella - Brown <br />Sizes: 36,37,38,39,40,41<br />More Colours Available
</div>
</a>
</div>
</center>
<script> vic=0; </script>
<form name=Show id=Show style="position:absolute;visibility:visible;top:420px;left:0px;" >
<input size=100 name=Show0 >
<input size=10 name=Show1 >
<input size=10 name=Show2 >
<input size=10 name=Show3 >
<input size=10 name=Show4 >
<input size=10 name=Show5 >
<input size=10 name=Show6 >
<input size=10 name=Show7 >
<input size=10 name=Show8 >
<input size=10 name=Show9 ><br>
<textarea name=TA rows=1 cols=100 ></textarea>
</form>
<script type="text/javascript">
/*<![CDATA[*/
function zxcShow(o){
var items=zxcByClassName(o.ClassName)
for (var a,div,z0=0;z0<items.length;z0++){
a=items[z0].getElementsByTagName('A')[0];
div=items[z0].getElementsByTagName('DIV')[0];
if (a&&div){
new zxcShowAnimate(items[z0],a,div,o.Duration,o.Delay);
}
}
}
function zxcShowAnimate(item,a,div,ms,delay){
this.ooop=new zxcAnimate('opacity',div,0);
this.ooop.Complete=function(){
if (this.data[0]==0){
this.obj.style.visibility='hidden';
}
}
this.ms=ms||1000;
this.delay=delay||500;
this.addevt(item,'mouseover','show');
this.addevt(item,'mouseout','out');
this.addevt(div,'mouseover','show');
this.addevt(div,'mouseout','hide');
this.to=null;
this.to1=null;
}
zxcShowAnimate.prototype={
out:function(){
clearTimeout(this.to1);
},
show:function(){
clearTimeout(this.to);
clearTimeout(this.to1);
var oop=this;
this.to1=setTimeout(function(){
oop.ooop.obj.style.visibility='visible';
oop.ooop.animate(oop.ooop.data[0],100,oop.ms);
},this.delay);
},
hide:function(){
var oop=this;
clearTimeout(this.to1);
this.to=setTimeout(function(){
oop.ooop.animate(oop.ooop.data[0],0,this.ms);
},200);
},
addevt:function(o,t,f,p){
var oop=this;
if (o.addEventListener) o.addEventListener(t,function(e){ return oop[f](e,p);}, false);
else if (o.attachEvent) o.attachEvent('on'+t,function(e){ return oop[f](e,p); });
}
}
function zxcByClassName(nme,el,tag){
if (typeof(el)=='string') el=document.getElementById(el);
el=el||document;
for (var tag=tag||'*',reg=new RegExp('\\b'+nme+'\\b'),els=el.getElementsByTagName(tag),ary=[],z0=0; z0<els.length;z0++){
if(reg.test(els[z0].className)) ary.push(els[z0]);
}
return ary;
}
zxcShow({
ClassName:'indexitem',
Duration:1000,
Delay:500
});
/*]]>*/
</script></body>
</html>
lilpete
08-23-2010, 04:03 PM
You legend! Thank you so much for that...
You can see the results here:
http://www.test.steptoes.co.uk/animal.ghtml
Thanks again, one step closer to a finished website. :D
vwphillips
08-23-2010, 04:49 PM
better
<!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" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
.indexitem {
position:relative;width:200px;text-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
.popoutdiv {
position:absolute;visibility:hidden;z-Index:101;left:-25px;top:-20px;width:250px;background-Color:#FFFFCC;text-align:center;font-family:Verdana;font-size:10px;border:solid black 1px;
}
/*]]>*/
</style>
<script type="text/javascript">
// Animate (11-January-2010)
// by Vic Phillips http://www.vicsjavascripts.org.uk
// To progressively change the Left, Top, Width, Height or Opacity of an element over a specified period of time.
// With the ability to scale the effect time on specified minimum/maximum values
// and with three types of progression 'sin' and 'cos' and liner.
// **** Application Notes
// **** The HTML Code
//
// when moving an element the inline or class rule style position of the element should be assigned as
// 'position:relative;' or 'position:absolute;'
//
// The element would normally be assigned a unique ID name.
//
// **** Initialising the Script.
//
// The script is initialised by assigning an instance of the script to a variable.
// e.g A = new zxcAnimate('left','id1')
// where:
// A = a global variable (variable)
// parameter 0 = the mode(see Note 1). (string)
// parameter 1 = the unique ID name or element object. (string or element object)
// parameter 1 = the initial value. (digits, default = 0)
// **** Executing the Effect
//
// The effect is executed by an event call to function 'A.animate(10,800 ,5000,[10,800]);'
// where:
// A = the global referencing the script instance. (variable)
// parameter 0 = the start value. (digits, for opacity minimum 0, maximum 100)
// parameter 1 = the finish value. (digits, for opacity minimum 0, maximum 100)
// parameter 2 = period of time between the start and finish of the effect in milliseconds. (digits or defaults to previous or 0(on first call) milliSeconds)
// parameter 3 = (optional) to scale the effect time on a specified minimum/maximum. (array, see Note 3)
// field 0 the minimum value. (digits)
// field 1 the maximum value. (digits)
// parameter 3 = (optional) the type of progression, 'sin', 'cos' or 'liner'. (string, default = 'liner')
// 'sin' progression starts fast and ends slow.
// 'cos' progression starts slow and ends fast.
//
// Note 1: Examples modes: 'left', 'top', 'width', 'height', 'opacity.
// Note 2: The default units(excepting opacity) are 'px'.
// For hyphenated modes, the first character after the hyphen must be upper case, all others lower case.
// Note 3: The scale is of particular use when re-calling the effect
// in mid progression to retain an constant rate of progression.
// Note 4: The current effect value is recorded in A.data[0].
// Note 5: A function may be called on completion of the effect by assigning the function
// to the animator intance property .Complete.
// e.g. [instance].Complete=function(){ alert(this.data[0]); };
//
// **** Functional Code(1.52K) - NO NEED to Change
function zxcAnimate(mde,obj,srt){
this.to=null;
this.obj=typeof(obj)=='object'?obj:document.getElementById(obj);
this.mde=mde.replace(/\W/g,'');
this.data=[srt||0];
return this;
}
zxcAnimate.prototype={
animate:function(srt,fin,ms,scale,c){
clearTimeout(this.to);
this.time=ms||this.time||0;
this.neg=srt<0||fin<0;
this.data=[srt,srt,fin];
this.mS=this.time*(!scale?1:Math.abs((fin-srt)/(scale[1]-scale[0])));
this.c=typeof(c)=='string'?c.charAt(0).toLowerCase():this.c?this.c:'';
this.inc=Math.PI/(2*this.mS);
this.srttime=new Date().getTime();
this.cng();
},
cng:function(){
var oop=this,ms=new Date().getTime()-this.srttime;
this.data[0]=(this.c=='s')?(this.data[2]-this.data[1])*Math.sin(this.inc*ms)+this.data[1]:(this.c=='c')?this.data[2]-(this.data[2]-this.data[1])*Math.cos(this.inc*ms):(this.data[2]-this.data[1])/this.mS*ms+this.data[1];
this.apply();
if (ms<this.mS) this.to=setTimeout(function(){oop.cng()},10);
else {
this.data[0]=this.data[2];
this.apply();
if (this.Complete) this.Complete(this);
}
},
apply:function(){
if (isFinite(this.data[0])){
if (this.data[0]<0&&!this.neg) this.data[0]=0;
if (this.mde!='opacity') this.obj.style[this.mde]=Math.floor(this.data[0])+'px';
else zxcOpacity(this.obj,this.data[0]);
}
}
}
function zxcOpacity(obj,opc){
if (opc<0||opc>100) return;
obj.style.filter='alpha(opacity='+opc+')';
obj.style.opacity=obj.style.MozOpacity=obj.style.WebkitOpacity=obj.style.KhtmlOpacity=opc/100-.001;
}
</script>
</head>
<body>
<center>
<br /><br /><br />
<div class="indexitem">
<img src="http://www.test.steptoes.co.uk//images/icons/el-naturalista-index.jpg" border="0" align="top" alt="El-Naturalista" /> <br />
<a class=popout href="product-display_El-Naturalista-N928_dGFibGU9cHJvZHVjdCZmaWVsZD1Db2RlMSZ2YWx1ZT1OOTI4.ghtml">
<img src="http://www.test.steptoes.co.uk//product/index/N928-Brown.jpg" border="0" alt="Recy Clus Ella" vspace="5" />
<div class="popoutdiv" >
<img src=http://www.test.steptoes.co.uk//product/thumbs/N928-Brown.jpg border=0 alt=El-Naturalista Recy Clus Ella />
<br />El-Naturalista Recy Clus Ella - Brown <br />Sizes: 36,37,38,39,40,41<br />More Colours Available
</div>
</a>
</div>
<div class="indexitem">
<img src="http://www.test.steptoes.co.uk//images/icons/el-naturalista-index.jpg" border="0" align="top" alt="El-Naturalista" /> <br />
<a class=popout href="product-display_El-Naturalista-N928_dGFibGU9cHJvZHVjdCZmaWVsZD1Db2RlMSZ2YWx1ZT1OOTI4.ghtml">
<img src="http://www.test.steptoes.co.uk//product/index/N928-Brown.jpg" border="0" alt="Recy Clus Ella" vspace="5" />
<div class="popoutdiv" >
<img src=http://www.test.steptoes.co.uk//product/thumbs/N928-Brown.jpg border=0 alt=El-Naturalista Recy Clus Ella />
<br />El-Naturalista Recy Clus Ella - Brown <br />Sizes: 36,37,38,39,40,41<br />More Colours Available
</div>
</a>
</div>
</center>
<script type="text/javascript">
/*<![CDATA[*/
function zxcShow(o){
var items=zxcByClassName(o.ClassName)
for (var a,div,z0=0;z0<items.length;z0++){
a=items[z0].getElementsByTagName('A')[0];
div=items[z0].getElementsByTagName('DIV')[0];
if (a&&div){
new zxcShowAnimate(items[z0],a,div,o.Duration,o.Delay);
}
}
}
function zxcShowAnimate(item,a,div,ms,delay){
this.item=item;
this.ooop=new zxcAnimate('opacity',div,0);
this.ooop.Complete=function(){
if (this.data[0]==0){
this.obj.style.visibility='hidden';
}
}
document.body.appendChild(div);
this.ms=ms||1000;
this.delay=delay||500;
this.addevt(item,'mouseover','show');
this.addevt(item,'mouseout','out');
this.addevt(div,'mouseover','show');
this.addevt(div,'mouseout','hide');
this.to=null;
this.to1=null;
}
zxcShowAnimate.prototype={
out:function(){
clearTimeout(this.to1);
},
show:function(){
clearTimeout(this.to);
clearTimeout(this.to1);
var oop=this;
var pos=zxcPos(oop.item);
oop.ooop.obj.style.left=pos[0]-(oop.ooop.obj.offsetWidth-oop.item.offsetWidth)/2+'px';
oop.ooop.obj.style.top=pos[1]-(oop.ooop.obj.offsetHeight-oop.item.offsetHeight)/2+'px';
this.to1=setTimeout(function(){
oop.ooop.obj.style.visibility='visible';
oop.ooop.animate(oop.ooop.data[0],100,oop.ms);
},this.delay);
},
hide:function(){
var oop=this;
clearTimeout(this.to1);
this.to=setTimeout(function(){
oop.ooop.animate(oop.ooop.data[0],0,this.ms);
},200);
},
addevt:function(o,t,f,p){
var oop=this;
if (o.addEventListener) o.addEventListener(t,function(e){ return oop[f](e,p);}, false);
else if (o.attachEvent) o.attachEvent('on'+t,function(e){ return oop[f](e,p); });
}
}
function zxcByClassName(nme,el,tag){
if (typeof(el)=='string') el=document.getElementById(el);
el=el||document;
for (var tag=tag||'*',reg=new RegExp('\\b'+nme+'\\b'),els=el.getElementsByTagName(tag),ary=[],z0=0; z0<els.length;z0++){
if(reg.test(els[z0].className)) ary.push(els[z0]);
}
return ary;
}
function zxcPos(obj){
var rtn=[0,0];
while(obj){
rtn[0]+=obj.offsetLeft;
rtn[1]+=obj.offsetTop;
obj=obj.offsetParent;
}
return rtn;
}
zxcShow({
ClassName:'indexitem',
Duration:1000,
Delay:500
});
/*]]>*/
</script></body>
</html>
lilpete
08-23-2010, 06:09 PM
Done! Thanks dude..
That is better, smoother animation! Cheers buddy.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.