用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - javascript代码库

js 自动播放幻灯片

2012-09-16 作者: 小蜜锋举报

[javascript]代码库

<!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>
<style>
body, div, ul, li {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}
body {
    text-align: center;
    font: 12px/20px Arial;
}
#box {
    position: relative;
    width: 492px;
    height: 172px;
    background: #fff;
    border-radius: 5px;
    border: 8px solid #CCC;
    margin: 10px auto;
    cursor: pointer;
}
#box .list {
    position: relative;
    width: 490px;
    height: 170px;
    overflow: hidden;
}
#box .list ul {
    position: absolute;
    top: 0;
    left: 0;
}
#box .list li {
    width: 490px;
    height: 170px;
    overflow: hidden;
}
#box .count {
    position: absolute;
    right: 0;
    bottom: 5px;
}
#box .count li {
    color: #fff;
    float: left;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 5px;
    overflow: hidden;
    opacity: 0.7;
    filter: alpha(opacity = 70);
    border-radius: 20px;
    background-color: #CCC;
}
#box .count li.current {
    color: #fff;
    opacity: 1;
    filter: alpha(opacity = 100);
    font-weight: 700;
    background-color: #666;
}
#tmp {
    width: 100px;
    height: 100px;
    position: absolute;
}
</style>
<script type="text/javascript">
window.onload = function ()
{
    var oBox = document.getElementById("box");
    var oList = oBox.getElementsByTagName("ul")[0];
    var aImg = oBox.getElementsByTagName("img");
    var timer = playTimer = null;
    var index = i = 0;
    var bOrder = true;
    var aTmp = [];
    var aBtn = null;
     
    //生成数字按钮
    for (i = 0; i < aImg.length; i++) aTmp.push("<li>" + (i + 1) + "</li>");
     
    //插入元素
    var oCount = document.createElement("ul");
    oCount.className = "count";
    oCount.innerHTML = aTmp.join("");
    oBox.appendChild(oCount);  
    aBtn = oBox.getElementsByTagName("ul")[1].getElementsByTagName("li");
     
    //初始化状态
    cutover();
     
    //按钮点击切换
    for (i = 0; i < aBtn.length; i++)
    {
        aBtn[i].index = i;
        aBtn[i].onmouseover = function ()
        {
            index = this.index;
            cutover()
        }
    }
     
    function cutover()
    {
        for (i = 0; i < aBtn.length; i++) aBtn[i].className = "";
        aBtn[index].className = "current";         
        startMove(-(index * aImg[0].offsetHeight))
    }
     
    function next()
    {
        bOrder ? index++ : index--;
        index <= 0 && (index = 0, bOrder = true);
        index >= aBtn.length - 1 && (index = aBtn.length - 1, bOrder = false)
        cutover()
    }
     
    playTimer = setInterval(next, 3000);
     
    //鼠标移入展示区停止自动播放
    oBox.onmouseover = function ()
    {
        clearInterval(playTimer)
    };
     
    //鼠标离开展示区开始自动播放
    oBox.onmouseout = function ()
    {
        playTimer = setInterval(next, 3000)
    };
    function startMove(iTarget)
    {
        clearInterval(timer);
        timer = setInterval(function ()
        {
            doMove(iTarget)
        }, 30) 
    }
    function doMove (iTarget)
    {      
        var iSpeed = (iTarget - oList.offsetTop) / 10;
        iSpeed = iSpeed > 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed);       
        oList.offsetTop == iTarget ? clearInterval(timer) : oList.style.top = oList.offsetTop + iSpeed + "px"
    }
};
</script>
</head>
<body>
<div id="box">
  <div class="list">
    <ul>
      <li><img src="http://yuncode.net/Public/images/header/logo.gif" width="490" height="170" /></li>
      <li><img src="http://yuncode.net/Public/images/header/logo.gif" width="490" height="170" /></li>
      <li><img src="http://yuncode.net/Public/images/header/logo.gif" width="490" height="170" /></li>
      <li><img src="http://yuncode.net/Public/images/header/logo.gif" width="490" height="170" /></li>
      <li><img src="http://yuncode.net/Public/images/header/logo.gif" width="490" height="170" /></li>
    </ul>
  </div>
</div>
</body>
</html>

[代码运行效果截图]


js 自动播放幻灯片


网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...