网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 背景图像 >> 正文
最新文章
· 带文字说明的js幻灯片代码
· 浏览器全屏浏览图片集
· 创意中国flash+xml焦点图代码
· 仿QQ商城焦点图jquery幻灯特效
· 带缓冲效果的图片幻灯片
· css和jquery配合完成-ipad向左向右拖
· 图片自动按比例缩小代码(防止页面被
· 仿QQ新闻图片浏览效果
· 一个横向滑动的图片切换容器代码
· 鼠标移入/移出改变图片透明度
热门文章
 图片上的左右箭头切换上一张下一张
 带缩略图和左右箭头自动切换的图片
 产品展示专用的jQuery图片幻灯+缩略
 Flash+XML前后按钮的超漂亮图片切换
 图片左右滚动,带有左右方向控制
 Jquery幻灯片/焦点图插件KinSlides
 JS 图片左右滚动,图片控制左右滚动
 可控制左右滚动的无缝图片滚动特效
 可控制图片放大缩小还原移动效果的
 非常漂亮的JS带缩略图的幻灯图片切
相关文章
自动切换的JS菜单
隔指定时间选项卡自动切换
自动切换的选项卡
仿LightBox图片盒子的YLightBox照片展示特
可全屏展示的flash+xml相册
腾讯网的flash+xml高清图片展播特效包
仿腾讯QQ网的图片旋转展示特效
图片上左右箭头翻页代码
新浪新闻频道带缩略图的flash图片切换
基于jQuery淡入淡出可自动切换的幻灯插件
Flash+XML前后按钮的超漂亮图片切换前后切
图片上的左右箭头切换上一张下一张图片的
兼容各种浏览器且可控制滚动方向的图片展
很漂亮的图片切换展示效果
带缩略图和左右箭头自动切换的图片展示效果
来源:蓝色理想 更新时间:2010/10/28 22:37:12 阅读次数: 我要投稿
☉预览 ↓下载 #复制 +收藏
特效代码:
<!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>带缩略图和左右箭头自动切换的图片展示效果</title> 
<style type="text/css">
body { background: #666; } ul { padding: 0; margin: 0; } li { list-style: none; } img { border: 0; }
.play { width: 400px; height: 430px; margin: 50px auto 0; background: #999; font: 12px Arial; }
.big_pic { width: 400px; height: 320px; overflow: hidden; border-bottom: 1px solid #ccc; background: #222; position: relative; }
.big_pic li { width: 400px; height: 320px; overflow: hidden; position: absolute; top: 0; left: 0; z-index: 0; background: url(images/loading.gif) no-repeat center center; }
.mark_left { width: 200px; height: 320px; position: absolute; left: 0; top: 0; background: red; filter: alpha(opacity:0); opacity: 0; z-index:3000; }
.mark_right { width: 200px; height: 320px; position: absolute; left: 200px; top: 0; background: green; filter: alpha(opacity:0); opacity: 0; z-index:3000; }
.big_pic .prev { width: 60px; height: 60px; background: url(images/btn.gif) no-repeat; position: absolute; top: 130px; left: 10px; z-index: 3001; display: none; cursor: pointer; }
.big_pic .next { width: 60px; height: 60px; background: url(images/btn.gif) no-repeat 0 -60px; position: absolute; top: 130px; right: 10px; z-index: 3001; display: none;cursor: pointer; }
.big_pic .text { position: absolute; left: 10px; top: 302px; z-index: 3000; color: #ccc; }
.big_pic .length { position: absolute; right: 10px; bottom: 4px; z-index: 3000; color: #ccc; }
.big_pic .bg { width: 400px; height: 25px; background: #000; filter: alpha(opacity=60); opacity: 0.6; position: absolute; z-index: 2999; bottom: 0; left: 0; }
.small_pic { width: 380px; height: 94px; position: relative; top: 7px; left: 10px; overflow: hidden; }
.small_pic ul { height: 94px; position: absolute; top: 0; left: 0; }
.small_pic li { width: 120px; height: 94px; float: left; padding-right: 10px; background: url(images/loading.gif) no-repeat center center; cursor: pointer; filter: alpha(opacity=60); opacity: 0.6; }
.small_pic img { width: 120px; height: 94px; }
</style>
<script type="text/javascript">
var g_aImgInfo=
[
 {info: "都市魅力", href: 'http://www.cwydesign.com/'},
 {info: "古香古色", href: 'http://www.cwydesign.com/'},
 {info: "沉浸舞步的舞者", href: 'http://www.cwydesign.com/'},
 {info: "名贵跑车", href: 'http://www.cwydesign.com/'},
 {info: "聆听天籁的精灵", href: 'http://www.cwydesign.com/'},
 {info: "绚彩光芒", href: 'http://www.cwydesign.com/'}
];
var oDiv=null;
var oUlContent=null;
var oUlBtn=null;
var aLiImg=null;
var aLiBtn=null;
var oBtnPrev=null;
var oBtnNext=null;
var oTxtInfo=null;
var oTxtLength=null;
var oMarkPrev=null;
var oMarkNext=null;
var g_aTimerImg=[];
var g_aTimerBtn=[];
var g_oTimerUl=null;
var g_oTimerAutoPlay=null;
var g_aLiBtnAlpha=[];
var g_iNowImg=0;
var g_iZIndexBase=2;
window.onload=function ()
{
 var i=0;
 
 //获取各类元素
 oDiv=document.getElementById('playimages');
 oUlContent=oDiv.getElementsByTagName('ul')[0];
 oUlBtn=oDiv.getElementsByTagName('ul')[1];
 
 oBtnPrev=oDiv.getElementsByTagName('div')[0];
 oBtnNext=oDiv.getElementsByTagName('div')[1];
 
 oTxtInfo=oDiv.getElementsByTagName('div')[2];
 oTxtLength=oDiv.getElementsByTagName('div')[3];
 
 oMarkPrev=oDiv.getElementsByTagName('a')[0];
 oMarkNext=oDiv.getElementsByTagName('a')[1];
 
 aLiImg=oUlContent.getElementsByTagName('li');
 aLiBtn=oUlBtn.getElementsByTagName('li');
 
 //为元素添加属性
 oTxtInfo.innerHTML=g_aImgInfo[0].info;
 oTxtLength.innerHTML='1/'+aLiImg.length;
 
 oMarkPrev.href=g_aImgInfo[0].href;
 oMarkNext.href=g_aImgInfo[0].href;
 
 oBtnPrev.miaovOpacity=0;
 oBtnNext.miaovOpacity=0;
 
 oBtnPrev.miaovTime=0;
 oBtnNext.miaovTime=0;
 
 oUlBtn.style.width=aLiBtn[0].offsetWidth*aLiBtn.length+'px';
 
 //为元素添加事件
 function showPrev()
 {
  showBtn(oBtnPrev);
  hideBtn(oBtnNext);
  
  stopAutoPlay();
 }
 
 function showNext()
 {
  hideBtn(oBtnPrev);
  showBtn(oBtnNext);
  
  stopAutoPlay();
 }
 
 function hideAll()
 {
  hideBtn(oBtnPrev);
  hideBtn(oBtnNext);
  
  startAutoPlay();
 }
 
 oMarkPrev.onmouseover =showPrev;
 oBtnPrev.onmouseover =showPrev;
 oMarkNext.onmouseover =showNext;
 oBtnNext.onmouseover =showNext;
 
 oBtnPrev.onmouseout  =hideAll;
 oBtnNext.onmouseout  =hideAll;
 oMarkPrev.onmouseout =hideAll;
 oMarkNext.onmouseout =hideAll;
 
 oBtnPrev.onmousedown =gotoPrev;
 oBtnNext.onmousedown =gotoNext;
 
 oUlBtn.onmouseover  =stopAutoPlay;
 oUlBtn.onmouseout  =startAutoPlay;
 
 for(i=0;i<aLiBtn.length;i++)
 {
  aLiBtn[i].miaovIndex=i;
  aLiBtn[i].onmouseover=function ()
  {
   if(g_iNowImg!=this.miaovIndex)
   {
    showLiBtn(this.miaovIndex);
   }
  };
  aLiBtn[i].onmouseout=function ()
  {
   if(g_iNowImg!=this.miaovIndex)
   {
    hideLiBtn(this.miaovIndex);
   }
  };
  aLiBtn[i].onmousedown=function ()
  {
   gotoImg(this.miaovIndex);
  };
  g_aTimerBtn[i]=null;
  g_aLiBtnAlpha[i]=60;
 }
 
 g_aLiBtnAlpha[0]=100;
 
 startAutoPlay();
};
function showBtn(oBtn)
{
 if(oBtn.miaovTimer)
 {
  clearInterval(oBtn.miaovTimer);
 }
 
 oBtn.miaovTimer=setInterval
 (
  function ()
  {
   if(oBtn.miaovOpacity<100)
   {
    oBtn.miaovOpacity+=10;
    
    oBtn.style.display='block';
    oBtn.style.filter="alpha(opacity:"+oBtn.miaovOpacity+")";
    oBtn.style.opacity=oBtn.miaovOpacity/100;
   }
   else
   {
    oBtn.style.filter="";
    oBtn.style.opacity="";
    
    clearInterval(oBtn.miaovTimer);
    oBtn.miaovTimer=0;
   }
  }, 30
 );
}
function hideBtn(oBtn)
{
 if(oBtn.miaovTimer)
 {
  clearInterval(oBtn.miaovTimer);
 }
 
 oBtn.miaovTimer=setInterval
 (
  function ()
  {
   if(oBtn.miaovOpacity>0)
   {
    oBtn.miaovOpacity-=10;
    
    oBtn.style.filter="alpha(opacity:"+oBtn.miaovOpacity+")";
    oBtn.style.opacity=oBtn.miaovOpacity/100;
   }
   else
   {
    oBtn.style.display='none';
    oBtn.style.filter="";
    oBtn.style.opacity="";
    
    clearInterval(oBtn.miaovTimer);
    oBtn.miaovTimer=0;
   }
  }, 30
 );
}
function gotoImg(index)
{
 if(index==g_iNowImg)
 {
  return;
 }
 
 aLiImg[index].style.height='0px';
 aLiImg[index].style.display='block';
 aLiImg[index].style.zIndex=g_iZIndexBase++;
 
 if(g_aTimerImg[index])
 {
  clearInterval(g_aTimerImg[index]);
 }
 g_aTimerImg[index]=setInterval("slideDown("+index+")", 30);
 
 for(i=0;i<aLiBtn.length;i++)
 {
  if(i==index)
  {
   showLiBtn(i);
  }
  else
  {
   hideLiBtn(i);
  }
 }
 
 moveUlBtn(index);
 
 oTxtInfo.innerHTML=g_aImgInfo[index].info;
 oTxtLength.innerHTML=(index+1)+'/'+aLiImg.length;
 
 oMarkPrev.href=g_aImgInfo[index].href;
 oMarkNext.href=g_aImgInfo[index].href;
 
 g_iNowImg=index;
}
function slideDown(index)
{
 var h=aLiImg[index].offsetHeight+10;
 
 if(h>=oUlContent.offsetHeight)
 {
  h=oUlContent.offsetHeight;
  
  clearInterval(g_aTimerImg[index]);
  g_aTimerImg[index]=null;
 }
 
 aLiImg[index].style.height=h+'px';
}
function gotoNext()
{
 gotoImg((g_iNowImg+1)%aLiImg.length);
}
function gotoPrev()
{
 gotoImg((g_iNowImg-1+aLiImg.length)%aLiImg.length);
}
function showLiBtn(index)
{
 if(g_aTimerBtn[index])
 {
  clearInterval(g_aTimerBtn[index]);
 }
 g_aTimerBtn[index]=setInterval("showLiBtnInner("+index+")", 30);
}
function showLiBtnInner(index)
{
 var alpha=g_aLiBtnAlpha[index]+10;
 
 if(alpha>=100)
 {
  aLiBtn[index].style.filter='';
  aLiBtn[index].style.opacity='1';
  
  clearInterval(g_aTimerBtn[index]);
  g_aTimerBtn[index]=null;
 }
 else
 {
  aLiBtn[index].style.filter='alpha(opacity:'+alpha+')';
  aLiBtn[index].style.opacity=alpha/100;
 }
 
 g_aLiBtnAlpha[index]=alpha;
}
function hideLiBtn(index)
{
 if(g_aTimerBtn[index])
 {
  clearInterval(g_aTimerBtn[index]);
 }
 g_aTimerBtn[index]=setInterval("hideLiBtnInner("+index+")", 30);
}
function hideLiBtnInner(index)
{
 var alpha=g_aLiBtnAlpha[index]-10;
 
 if(alpha<=60)
 {
  alpha=60;
  
  clearInterval(g_aTimerBtn[index]);
  g_aTimerBtn[index]=null;
 }
 aLiBtn[index].style.filter='alpha(opacity:'+alpha+')';
 aLiBtn[index].style.opacity=alpha/100;
 
 g_aLiBtnAlpha[index]=alpha;
}
function moveUlBtn(index)
{
 var iTarget=0;
 
 if(index==0)
 {
  index=1;
 }
 else if(index==aLiBtn.length-1)
 {
  index=aLiBtn.length-2;
 }
 
 iTarget=-(index-1)*aLiBtn[0].offsetWidth;
 
 if(g_oTimerUl)
 {
  clearInterval(g_oTimerUl);
 }
 
 g_oTimerUl=setInterval("moveUlBtnInner("+iTarget+")", 30);
}
function moveUlBtnInner(iTarget)
{
 var iSpeed=(iTarget-oUlBtn.offsetLeft)/7;
 
 if(iSpeed>0)
 {
  iSpeed=Math.ceil(iSpeed);
 }
 else
 {
  iSpeed=Math.floor(iSpeed);
 }
 
 if(oUlBtn.offsetLeft==iTarget)
 {
  clearInterval(g_oTimerUl);
  g_oTimerUl=null;
 }
 else
 {
  oUlBtn.style.left=oUlBtn.offsetLeft+iSpeed+'px';
 }
}
function startAutoPlay()
{
 if(g_oTimerAutoPlay)
 {
  clearInterval(g_oTimerAutoPlay);
 }
 
 g_oTimerAutoPlay=setInterval(gotoNext, 3000);
}
function stopAutoPlay()
{
 if(g_oTimerAutoPlay)
 {
  clearInterval(g_oTimerAutoPlay);
  g_oTimerAutoPlay=null;
 }
}
</script> 
</head> 
 
<body> 
<div id="playimages" class="play"> 
    <ul class="big_pic"> 
 
  <div class="prev"></div> 
  <div class="next"></div> 
 
  <div class="text">加载图片说明……</div> 
  <div class="length">计算图片数量……</div> 
  
  <a class="mark_left" href="javascript:;"></a> 
  <a class="mark_right" href="javascript:;"></a> 
  <div class="bg"></div> 
  
        <li style="z-index:1;"><img src="images/1.jpg" /></li> 
        <li><img src="images/2.jpg" /></li> 
        <li><img src="images/3.jpg" /></li> 
        <li><img src="images/4.jpg" /></li> 
        <li><img src="images/5.jpg" /></li> 
        <li><img src="images/6.jpg" /></li> 
    </ul> 
    <div class="small_pic"> 
        <ul style="width:390px;"> 
            <li style="filter: 100; opacity: 1;"><img src="images/1.jpg" /></li> 
            <li><img src="images/2.jpg" /></li> 
            <li><img src="images/3.jpg" /></li> 
            <li><img src="images/4.jpg" /></li> 
            <li><img src="images/5.jpg" /></li> 
            <li><img src="images/6.jpg" /></li> 
        </ul> 
    </div> 
</div> 
 
</body> 
</html>
☉预览 ↓下载 #复制 +收藏
特效说明:

  这是一个自动切换的轮播图片效果,图片由上至下滑动出现,并与底下的小图一一对应起来,当转到下一张时,小图片从右至左移动,下一张图片由上至下再滑动出来。当鼠标移到图片左侧时,往左箭头图片渐现出来;鼠标移开图片左侧时,箭头图片渐隐消失;右侧效果与左侧一样。  点击左右按钮,相应跳转到上一张或下一张。

  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号