http://www.v-ec.com/dh20156/code/dhtipslayer.htm你拿石头君这个,改改好了...

解决方案 »

  1.   

    # muxrwc高手出马拉,我们就友情 up 下拉!
    我进去看拉,基本能实现功能!
      

  2.   

    把http://www.360happy.cn/cmd.html?uid=1766&do=album&id=1515这个网站的代码偷下来
      

  3.   

    lightbox??能说详细点吗 ?
      

  4.   

    http://www.huddletogether.com/projects/lightbox2/這個就是lightbox 的网站,将例子研究一下应该能搞定
      

  5.   

    JS源码都是公开的
    自己慢慢研究吧
    下边这段是让背景变暗的
    var shield;
        shield = document.createElement("DIV");
        shield.id = "shield";
        shield.style.position = "absolute";
        shield.style.left = "0px";
        shield.style.top = "0px";
        shield.style.width = "100%";
        shield.style.height = document.body.scrollHeight+"px";
        shield.style.background = "#333";
        shield.style.textAlign = "center";
        shield.style.zIndex = "10000";
        shield.style.filter = "alpha(opacity=0)";
        shield.style.opacity = 0;
        document.body.appendChild(shield);
        
        this.setOpacity = function(obj,opacity){
        if(opacity>=1)opacity=opacity/100;
        try{ obj.style.opacity=opacity; }catch(e){}
        try{
        if(obj.filters.length>0&&obj.filters("alpha")){
        obj.filters("alpha").opacity=opacity*150;
        }else{
        obj.style.filter="alpha(opacity=\""+(opacity*150)+"\")";
        }
        }catch(e){}
        }
        var c = 0;
        this.doAlpha = function(){
        if (++c > 20){clearInterval(ad);return 0;}
        setOpacity(shield,c);
        }
        var ad = setInterval("doAlpha()",1);    document.body.onselectstart = function(){return false;}
        document.body.oncontextmenu = function(){return false;}
      

  6.   

    http://jquery.com/demo/thickbox/
    thickbox也是可以的