<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>简单高效的JS 幻灯片图片播放特效</title>
</head>
<body>
<div>
<div id="divs">
<img src="/Tech/UploadPic/2010-5/201052010542242129.jpg" id="1" style="FILTER: revealTrans(duration=2,transition=16); cursor:pointer;" onclick="location.href = 'http://www.newxing.com'">
<img src="/Tech/UploadPic/2010-5/201052010544335559.jpg" id="2" style="FILTER: revealTrans(duration=2,transition=17); cursor:pointer;display:none" onclick="location.href = 'http://www.newxing.com'">
<img src="/Tech/UploadPic/2010-5/20105201055261767.jpg" id="3" style="FILTER: revealTrans(duration=2,transition=18); cursor:pointer;display:none" onclick="location.href = 'http://www.newxing.com'">
<img src="/Tech/UploadPic/2010-5/201052010551917904.jpg" id="4" style="FILTER: revealTrans(duration=2,transition=19); cursor:pointer;display:none" onclick="location.href = 'http://www.newxing.com'">
</div>
<script language="javascript">
function $(_sId) {
return document.getElementById(_sId);
}
var speed=3000;
var setid=null;
var auto="true";
function galleryplay(divs,a,mtime){ //t为要应用此函数的id,a初始化时显示的项目的顺序数
if(divs=="0")return false;
var start=3;
if(auto=="true")
{
start = a-1;//初始项目
speed = mtime;//切换间隔
setid = null;//定时器
var loop = function(){ //自动切换
ids = divs.split(",");
for (var i=0;i<ids.length; i++)
{
$(ids[i]).style.display='none';
}
$(ids[start]).filters.revealTrans.Transition = Math.floor(Math.random() * 23);
$(ids[start]).filters.revealTrans.apply();
$(ids[start]).filters.revealTrans.play();
$(ids[start]).style.display='';
setid=setTimeout(loop,speed);
start++;
if(start==ids.length){
start=0;
}
};loop();
}
}
galleryplay('1,2,3,4',1,3000);
</SCRIPT>
</div>
</body>
</html>
简单高效的JS 幻灯片图片播放特效
最新推荐文章于 2017-09-01 23:59:24 发布