上一張

下一張

幻燈圖片

檔案下載 : 1  2  3  4  5  6

將下列程式碼複製至<head>程式碼</head>區內

<div align="center">
<script language="JavaScript1.1">
var photos=new Array()
var photoslink=new Array()
var which=0
photos[0]="041.gif"
photos[1]="042.gif"
photos[2]="043.gif"
photos[3]="044.gif"
photos[4]="045.gif"
photos[5]="046.gif"
var linkornot=0
photoslink[0]=""
photoslink[1]=""
photoslink[2]=""
photoslink[3]=""
photoslink[4]=""
photoslink[5]=""
var preloadedimages=new Array()
for (i=0;i<photos.length;i++){
preloadedimages[i]=new Image()
preloadedimages[i].src=photos[i]
}


function applyeffect(){
if (document.all){
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}



function playeffect(){
if (document.all)
photoslider.filters.revealTrans.play()
}

function keeptrack(){
window.status="Image "+(which+1)+" of "+photos.length
}


function backward(){
if (which>0){
which--
applyeffect()
document.images.photoslider.src=photos[which]
playeffect()
keeptrack()
}
}

function forward(){
if (which<photos.length-1){
which++
applyeffect()
document.images.photoslider.src=photos[which]
playeffect()
keeptrack()
}
}

function transport(){
window.location=photoslink[which]
}

</script>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">
<script>
if (linkornot==1)
document.write('<a href="javascript:transport()">')
document.write('<img src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')
if (linkornot==1)
document.write('</a>')
</script>
</tr>
<tr>
<td width="50%" height="21">
<p align="left"><a href="#" onClick="backward();return false">上一張</a></td>
<td width="50%" height="21">
<p align="right"><a href="#" onClick="forward();return false">下一張</a></td>
</tr>
</table>
</div>