| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1462 人关注过本帖
标题:精彩的幻灯片代码
只看楼主 加入收藏
luo123
Rank: 1
等 级:新手上路
威 望:2
帖 子:324
专家分:0
注 册:2007-4-13
收藏
 问题点数:0 回复次数:1 
精彩的幻灯片代码
<script>
</script>
<html>
<body>
<div id="testMessage" style="border:2px solid skyblue;width:300px;height:60px"></div>
<div id="photoContrl" style="display:none">
    <button onclick="prevPhoto()">Previous</button>
    <button onclick="nextPhoto()">Next</button>
    <button onclick="autoPlay()" id="pp">Play</button>
    <button onclick="stopPlay()">Stop</button>
</div>
<div style="border:1px solid gold;width:600px;background:dodgerblue"><img src="http://bbsimg. id="photo" style=""></div>
</body>
</html>
<script>
    
    function tM(Message)
    {
        $("testMessage").innerHTML=Message
    }
    function dR(topr)
    {
        document.write(topr)
    }
    function $(eleId)
    {return document.getElementById(eleId)}
    //预载图片
    var imasrc=new Array("http://news.
    ,"http://news.
    ,"http://news.
    ,"http://news.
    ,"http://news.
    ,"http://news.
    ,"http://news.
    ,"http://news.)//图片路径写入数组
    var preIma=new Array()
    var dB=new Date()
    for (i=0;i < imasrc.length;i++)//预载所有图片
    {
        preLoadImg(i)
    }
    function preLoadImg(imgIndex)//预载指定图片图片
    {
        preIma[imgIndex]=new Image()
        preIma[imgIndex].imgReadyStatus=false
        preIma[imgIndex].imgIndex=imgIndex
        preIma[imgIndex].onload=imgLoad
        preIma[imgIndex].onerror=imgError
        preIma[imgIndex].onabort=imgAbort
        preIma[imgIndex].src=imasrc[imgIndex]
    }
    function imgLoad()//预载完成
    {
        this.imgReadyStatus=true
    }
    function imgError()//预载失败
    {
        preLoadImg(this.imgIndex)
    }
    function imgAbort()//预载取消
    {
        preIma.splice(this.imgIndex,1)
    }
    var checkAgain
    function checkImgReadyStatus()//检索加载状态
    {
        var imgReadyStatus=true
        var persent=0
        var dE=new Date()
        for (i=0;i < preIma.length;i++)
        {
            if (!preIma[i].imgReadyStatus)
            {imgReadyStatus=false}
            else
            {persent++}
        }
        tM("完成:"+(persent/preIma.length*100).toFixed(2)+"%<br>载入:"+persent+"张图片<br>消耗时间:"+((dE-dB)/1000).toFixed(0)+"秒")//显示进度
        if (imgReadyStatus)
        {
            $("photoContrl").style.display="block"
            autoPlay()
            clearTimeout(checkAgain)
        }
        else
        {
            checkAgain=setTimeout(checkImgReadyStatus,1000)//检索频率
        }
    }
    checkImgReadyStatus()
    
    //幻灯片效果
    var photoIndex=0//初始化图片索引
    var opacity=10//初始化透明度
    var direct="--"//初始化透明度矢量
    var doPlay//定义播放
    var doAutoPlay//定义自动播放
    function prevPhoto(){play(-1)}//前翻
    function nextPhoto(){play(1)}//后翻
    function autoPlay()//自动播放
    {
        if (doAutoPlay)
        {
            clearInterval(doAutoPlay)
            doAutoPlay=null
            $("pp").innerHTML="Play"
        }
        else
        {
            play(1)
            doAutoPlay=setInterval("play(1)",3000)//定义自动播放频率
            $("pp").innerHTML="Pause"
        }
    }
    function stopPlay()//停止播放
    {
        clearInterval(doAutoPlay)
        doAutoPlay=null
        photoIndex=0
        play(0)
        $("pp").innerHTML="Play"
    }
    function play(act)//执行动作
    {
        if (preIma.length!=0)
        {
            if (doPlay) {clearInterval(doPlay)}
            doPlay=setInterval(switchPhoto,10)
            photoIndex=(photoIndex+act+preIma.length)%preIma.length
        }
    }
    function switchPhoto()//切换照片
    {
        eval("opacity"+direct)
        setOpa(opacity)
        if (opacity <= 1)
        {
            direct="++"
            $("photo").src=preIma[photoIndex].src
        }
        else if (opacity >= 10)
        {
            direct="--"
            clearInterval(doPlay)
        }
    }
    function setOpa(opacity)//改变透明度
    {
        if ($("photo").style.filter!=null)
        {$("photo").style.filter="alpha(opacity="+opacity*10+")"}
        else
        {$("photo").style.opacity=opacity/10}
    }
</script>
搜索更多相关主题的帖子: 幻灯片 代码 
2008-01-15 12:38
huangyong
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:湖北武汉
等 级:版主
威 望:20
帖 子:603
专家分:7
注 册:2006-7-21
收藏
得分:0 
感觉以前已经发过了,还是支持一下,找些更使用的东西让大家分享吧
2008-01-15 13:20
快速回复:精彩的幻灯片代码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017786 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved