織夢DedeCms v5.6/5.7 新圖集頁面增加圖片下載功能

字號:


    織夢DedeCms v5.6/5.7 新圖集頁面增加圖片下載功能,其實就是加個右鍵下載提示功能
    編輯打開 /templets/default/images/photo/heiphoto.js
    查找 if(sina.isIE)
    代碼如下:
    if(sina.isIE){
    this.ImgObj1.src = 'http://pic02.newdu.com/uploads/202504/02/news_mj_0053559.gif';
    this.ImgObj1.filters[0].Apply();
    this.ImgObj1.src = this.filmstrips[num].src;
    this.ImgObj1.filters[0].Play();
    }else{
    this.ImgObj1.src = this.filmstrips[num].src;
    for(i = 0;i <= 3;i ++){
    this._timeOut[i] = setTimeout("epidiascope.ImgObj1.style.opacity = " + i * 0.3,i * 100);
    };
    this._timeOut[i] = setTimeout("epidiascope.ImgObj1.style.opacity = 1;",4 * 100);
    };
    下面增加一行
    代碼如下:
    document.all.imgsrcs.href=(this.ImgObj1.src);
    然后在圖片內(nèi)容頁找個合適的放方增加一行 <a href="#" target="_blank" id="imgsrcs">[右鍵另存為下載]</a>
    然后再重新生成一次所有頁面,頁面就會出現(xiàn)[右鍵另存為下載]了。