<!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[*/
.sswrapper {
position:absolute;left:100px;top:100px;width:620px;height:306px;border:solid red 1px;background-Color:#FFFFCC;
}
.slideshow {
position:absolute;left:20px;top:20px;width:350px;height:260px;border:solid red 1px;background-Color:#FFFFCC;
}
.slider {
position:absolute;left:400px;top:80px;width:200px;height:140px;border:solid red 1px;background-Color:#FFFFCC;
}
.item {
position:relative;left:10px;top:0px;width:180px;height:20px;border:solid red 1px;margin-Top:10px;background-Color:#FFCC66;cursor:pointer;
opacity: .5;filter: alpha(opacity=50);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.active {
opacity:1;filter:alpha(opacity=100);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#up {
position:absolute;z-Index:2;left:500px;top:10px;cursor:pointer;
}
#down {
position:absolute;z-Index:2;left:500px;top:285px;cursor:pointer;
}
/*]]>*/
</style></head>
<body>
<div id="w" class="sswrapper" >
<div id="ss" class="slideshow" >
<img src="http://www.vicsjavascripts.org.uk/StdImages/Egypt5.jpg" alt="img" width="350" />
<img src="http://www.vicsjavascripts.org.uk/StdImages/Egypt6.jpg" alt="img" width="350" />
<img src="http://www.vicsjavascripts.org.uk/StdImages/Egypt7.jpg" alt="img" width="350" />
<img src="http://www.vicsjavascripts.org.uk/StdImages/Egypt8.jpg" alt="img" width="350" />
</div>
<div id="tst" class="slider" >
<div class="item" >Item 1</div>
<div class="item" >Item 2</div>
<div class="item" >Item 3</div>
<div class="item" >Item 4</div>
</div>
<img id="up" src="http://www.vicsjavascripts.org.uk/StdImages/up[1].gif" alt="next" />
<img id="down" src="http://www.vicsjavascripts.org.uk/StdImages/down[1].gif" alt="back" />
</div>
<script type="text/javascript">
/*<![CDATA[*/
// Slider Slide Show. (16-May-2013) DRAFT
// by Vic Phillips - http://www.vicsjavascripts.org.uk/
var zxcSlider={
GoTo:function(id,nu){
var o=this['zxc'+id];
if (o&&o.ary[nu]&&nu!=o.cnt){
o.ud=nu>o.cnt?1:-1;
this.rotate(o,1,nu);
}
},
Next:function(id,ud){
var o=this['zxc'+id],ud=typeof(ud)=='number'&&ud<0?-1:1;
if (o){
o.ud=ud;
this.rotate(o,ud);
}
},
Auto:function(id,ms){
var o=this['zxc'+id],oop=this;
if (o){
o.to=setTimeout(function(){ oop.rotate(o,o.ud,true); },ms||200);
}
},
Pause:function(id){
var o=this['zxc'+id];
if (o){
clearTimeout(o.to);
o.auto=false;
}
},
init:function(o){
var id=o.SlideShowID,m=o.Mode,ms=o.Speed,hold=o.AutoHold,srt=o.AutoStart,ud=o.Direction,acls=o.ActiveClass,ae=o.AddEvents,lks=document.getElementById(o.LinksID),ss=document.getElementById(id);
if (ss){
ss.style.overflow='hidden';
var sss=ss?ss.childNodes:[],lks=lks?lks.childNodes:[],m=typeof(m)=='string'&&m.charAt(0).toUpperCase()=='H'?['left','top','offsetWidth']:['top','left','offsetHeight'],ms=typeof(ms)=='number'&&ms>20?ms:1000,ary=[],cnt=0,e,sz,z0=0,z1=0,z2=0;
for (;z0<sss.length;z0++){
if (sss[z0].nodeType==1){
sss[z0].style.position='absolute';
sss[z0].style.width='100%';
sss[z0].style.height='100%';
sz=sss[z0][m[2]];
sss[z0].style[m[0]]=(ary.length!=0?-sz:0)+'px';
sss[z0].style[m[1]]='0px';
ary.push([sss[z0],m[0]]);
}
}
for (;z1<lks.length;z1++){
if (lks[z1].nodeType==1&&ary[cnt]){
e=lks[z1].className;
lks[z1].className=cnt!=0?e:e+' '+acls;
ary[cnt][2]=[lks[z1],e,e+' '+acls];
this.addevt(lks[z1],'mouseup','GoTo',id,cnt);
cnt++;
}
}
this['zxc'+id]=o={
id:id,
ary:ary,
sz:sz,
cnt:0,
ms:ms,
hold:typeof(hold)=='number'&&hold>0?hold:ms*4,
ud:typeof(ud)=='number'&&ud<0?-1:1,
run:false
}
if (ae instanceof Array){
for (;z2<ae.length;z2++){
obj=document.getElementById(ae[z2][0]);
e=ae[z2][1];
if (obj&&this[ae[z2][2]]&&(e=='mouseover'||e=='mouseout'||e=='mouseup'||e=='mousedown'||e=='click')){
this.addevt(obj,e,ae[z2][2],id,ae[z2][3]);
}
}
}
o.lgth=o.ary.length-1;
typeof(srt)=='number'&&srt>=0?this.Auto(id,srt):null;
}
},
rotate:function(o,ud,auto){
var cnt=o.cnt,lst=o.ary[cnt];
clearTimeout(o.to);
o.auto=auto===true;
lst[0].style.zIndex='0';
lst[2]?lst[2][0].className=lst[2][1]:null;
cnt+=o.ud;
o.ary[auto]?cnt=auto:null;
cnt=cnt<0?o.lgth:cnt>o.lgth?0:cnt;
o.ary[cnt][0].style.zIndex='1';
this.animate(o,o.ary[cnt],o.sz*(o.ud>0?-1:1),0,new Date(),o.ms,lst);
o.cnt=cnt;
},
animate:function(o,a,f,t,srt,mS,lst){
clearTimeout(a[3]);
var oop=this,ms=new Date()-srt,n=(t-f)/mS*ms+f;
if (isFinite(n)){
a[0].style[a[1]]=n+'px';
}
if (ms<mS){
a[3]=setTimeout(function(){ oop.animate(o,a,f,t,srt,mS,lst); },10);
}
else {
a[0].style[a[1]]=t+'px';
lst[0].style[a[1]]=o.sz+'px';
a=o.ary[o.cnt];
t==0&&a[2]?a[2][0].className=a[2][2]:null;
o.auto?this.Auto(o.id,o.hold):null;
}
},
addevt:function(o,t,f,p,p1){
var oop=this;
if (o.addEventListener){
o.addEventListener(t,function(e){ return oop[f](p,p1);}, false);
}
else if (o.attachEvent){
o.attachEvent('on'+t,function(e){ return oop[f](p,p1); });
}
}
}
zxcSlider.init({
SlideShowID:'ss', // the unique ID name of the slide show wrapper DIV. (string)
LinksID:'tst', // the unique ID name of the goto links wrapper DIV. (string)
Mode:'V', //(optional) the slider mode, 'Vertical' or 'Horizontal'. (string, default = 'Vertical')
Speed:1000, //(optional) the slider/fade speed in milli seconds. (number, default = 1000)
AutoHold:2000, //(optional) the auto rotate 'hold' delay in milli seconds. (number, default = Speed*4)
AutoStart:2000, //(optional) the auto rotate 'start' delay in milli seconds. (number, default = no auto start)
Direction:1, //(optional) the rotate ditection, 1 = anti-clock, -1 = clockwise. (number, default = 1000)
ActiveClass:'active', //(optional) the class modifier of the active slider item. (string, default = no class modifier)
AddEvents:[ //(optional) the event call to add to control the script. (string, default = in line event calls)
// field 0 = the unique ID name of the element.
// field 1 = the event type.
// field 2 = the script function.
// field 3 = the parameter to pass to the function.
['up','mouseup','Next',1],
['down','mouseup','Next',-1],
['w','mouseover','Pause'],
['w','mouseout','Auto']
]
});
/*]]>*/
</script>
</body>
</html>