《四屏平滑滚动的幻灯片效果》 查看源代码

2009-10-30 16:51:12 | 【

纯JS实现的平滑幻灯播放效果,可直接在HTML页面内修改链接和图片,效果非常不错

<!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>四屏平滑滚动的幻灯片效果 - 分享JavaScript-sharejs.com</title>
<meta name="Copyright" content="JavaScript分享网 http://www.sharejs.com/" />
<meta name="description" content="四屏平滑滚动的幻灯片效果,JavaScript分享网" />
<meta content="JavaScript,分享,JavaScript代码,Ajax" name="keywords" />
<LINK href="css/base.css" type=text/css rel=stylesheet>
<SCRIPT language=javascript type=text/javascript>
    var thumbCount = 4;
    document.getElementById('zoom').style.left = -514 + 'px';
    document.getElementById("zoom1").style.visibility = "hidden";
    document.getElementById("zoom2").style.visibility = "hidden";
    document.getElementById("zoom3").style.visibility = "hidden";
</SCRIPT>
<SCRIPT src="js/base.js" type=text/javascript></SCRIPT>
</head>
<body style="text-align:center">

<DIV id=fbMaster>
<DL id=content>
  <DT><STRONG><SPAN id=zoom>
  <A href="http://www.sharejs.com/" target="_blank"><IMG id=zoom0 height=432 alt="" src="images/ss_lrg_pk0.jpg" width=514></a>
  <A href="http://www.sharejs.com/" target="_blank"><IMG id=zoom1 height=432 alt="" src="images/ss_lrg_pk1.jpg" width=514></a>
  <A href="http://www.sharejs.com/" target="_blank"><IMG id=zoom2 height=432 alt="" src="images/ss_lrg_pk2.jpg" width=514></a>
  <A href="http://www.sharejs.com/" target="_blank"><IMG id=zoom3 height=432 alt="" src="images/ss_lrg_pk3.jpg" width=514></a>
  </SPAN> </STRONG></DT>
  <DD><A title="sharejs.com"><IMG id=thumb0 height=106 alt="" src="images/ss_sml_pk0.jpg" width=106></A></DD>
  <DD><A title="sharejs.com"><IMG id=thumb1 height=106 alt="" src="images/ss_sml_pk1.jpg" width=106></A></DD>
  <DD><A title="sharejs.com"><IMG id=thumb2 height=106 alt="" src="images/ss_sml_pk2.jpg" width=106></A></DD>
  <DD class=last><A title="sharejs.com"><IMG id=thumb3 height=106 alt="" src="images/ss_sml_pk3.jpg" width=106></A></DD>
  </DL>
</DIV>

<br><br>
<div align="center">

<script language="javascript" src="http://www.sharejs.com/js/720.js"></script>
<br><br>

获取更多JavaScript代码,请登录JavaScript分享网 <a href="http://www.sharejs.com">http://www.sharejs.com</a>
<br>
转载请注明出处,本代码仅供学习交流,不可用于任何商业用途!
</div>
</body>
</html>

返回 《四屏平滑滚动的幻灯片效果》