搜尋
首頁web前端js教程原生javascript實作圖片彈窗互動效果_javascript技巧

【一】用var 宣告多個變量,比每個變數都用var快多了   

複製程式碼 程式碼如下:

var sScrollTop = document.body.scrollTop || document.documentElement.scrollTop,
    sWindow_h = document.documentElement.clientHeight,
    t_h = parseInt(this.getCss(this.getId('gy_photoBox_head'),'height')),
    hold_h = sWindow_h - t_h - 20,
    width = this.nImgWidth ,
    height = this.nImgHeight;  

【二】Dom事件最佳化,在 window.onresize時,定義個定時器,setTimeout,可以防止事件頻繁地呼叫

複製程式碼 程式碼如下:

windowResize:function(){
            var _that = this,
                _timer = null;
            // 函數節流
            window.onresize = function(){
                clearTimeout(_timer);
                _timer = setTimeout(function(){
                    if( _that.tools.getId('gy_photoBox')){
                       _that.setBoxCss();
                    }

                },100);
            }       
        }

【三】圖片載入的處理函數

複製程式碼 程式碼如下:

/*
        @ src [String] 圖片的地址
        @ success [Function] 圖片載入成功的回呼函數
        @ error [Function] 圖片載入失敗的回呼函數
        */
        imgLoading:function(opt){
            var _img = new Image(),
                _that = this;
            _img.onload = function(){
                _that.nImgWidth = this.width;
                _that.nImgHeight = this.height;
                if(typeof opt.success == 'function'){
                    setTimeout(function(){
                        opt.success();
                    },300);
                }
            }
            _img.onerror = function(){
                if(typeof opt.error){
                    opt.error();
                }           
            }
            // 注意:放在onload事件下面,否則ie會出現BUG
            _img.src = opt.src;
        }

原始碼:

複製程式碼 程式碼如下:

/*
author:laoguoyong
*/
(function(){
/* -------------------------簡單的選擇器------------------- ----
    @ 參數 [string]
    ---------------------------------------
    ★-只支援以下選擇-★
    @ 支援一級選擇器:如'#id','.class','p'
    @ 支持後代選擇,如 '.class p','body span'
    @ 支援子元素選擇,如 '.class>p','body>span'
    ----------------------------------------
    @ return [Array]
    */
    var selector = function(str){
        // 定義元素陣列
        var elem = [];
        /* 私人方法
        ------------------------*/
        //返回是id的元素
        function _getId(id){
            return document.getElementById(id);
        }
        //傳回有此類名的元素-元素
        function _getByClassName(className,parent){
            var class_array = [],
                node = parent != undefined&&parent.nodeType==1?parent.getElementsByTagName('*'):document.getElementsBy?parent.getElementsByTagName('*'):document.getElementsBy?parent.getElementsByTagName('*'):document.getElementsByTagName('*'),
                reg = new RegExp("(^|\s)" className "(\s|$)");
            for(var n=0,i=node.length;n                 if(reg.test(node[n].className)){
                    類_array.push(node[n]);
                }
            }
            return 類_array;
        }
        //一級選擇,如 '#id','p','.class'
        // return [Array]
        function _getDom(s){
            var array_elem = [];
            if (s.indexOf('#')==0){
                array_elem.push(_getId(s.slice(1)));
            }
            else if(s.indexOf('.')==0){
                array_elem = array_elem.concat(_getByClassName(s.slice(1)));
            }
            else{
                var tag = document.getElementsByTagName(s);
                for(var n=0,i=tag.length;n                     array_elem.push(tag[n]);
                }
            }
            return array_elem;
        }
        /*
        @ arry_elm [Array] : 元素數組,如 ['.demo','p'] ,選擇的是.demo下面的p元素,至於是選擇後代還是子代,請看第2個參數解釋
        @ r [String] -可選(不傳預設為選擇後代): '>',是選擇子代元素;
        --------------------------
        @返回[陣列]
        */
        函數 _query(array_elem,r){
            var node = array_elem,
type_name = 節點[0].match(/#/)?'id_'節點[0].slice(1):節點[0].match(/./)?'className_'節點[0].slice(1 ):'tagName_'節點[0],
                子 = _getDom(節點[1]),
                type = type_name.split('_'),
                len = document.getElementsByTagName('*').length,
                reg = new RegExp("(^|\s)" type[1] "(\s|$)");
            for(var i=0,j=child.length;i                 var par = 兒童[i].parentNode;
                for(var n=0;n                     if(par.nodeType == 9){
                        休息;
                    }
                    if(reg.test(par[type[0]])){
                        elem.push(child[i]);
                        休息;                                  }其他{
                        if(r == '>') 中斷;
                        par = par.parentNode;
                    }       
                }
            }
        }
        /* 介面
        -----------------------*/
        var elemStr = str.replace(/(^s )|(s $)/,'');
        if(document.querySelectorAll){
            var dom = document.querySelectorAll(elemStr);
            for(var n=0,len=dom.length;n                 elem.push(dom[n]);
            }
        }其他{
            var    split = /[>s]/g.exec(elemStr);
            若(分割){
                var node = elemStr.split(split[0]);
                _query(節點,split[0]);
            }其他{
                elem = elem.concat( _getDom(elemStr) );
            }
        }
        return elem;
    }
    /* 彈跳窗功能建構子
    -----------------------*/
    function LGY_photoBox(option){
        this.opt = option;
        this.oTarget = typeof option.target == 'object'?option.target:selector(option.target);
        if(!this.oTarget) return;
        this.nLen = this.oTarget.length; //總個數
        this.aBigimg_src = []; //大圖資料數組
        this.aTitle = []; //標題資料陣列
        this.nIndex = 0; //索引
        this.nImgWidth = 0; //動態取得圖片的寬
        this.nImgHeight = 0; //動態擷取圖片的高
        this.nDelay = 0.2;
        this.intit();
    }
    LGY_photoBox.prototype = {
        intit:function(){
            var _that = this;
            this.getData();
            for(var n=0;n                 this.oTarget[n].index = n;
                this.oTarget[n].onclick = function(e){
                    _that.createCover();
                    var e = _that.tools.getEvent(e),
                        target = _that.tools.getTarget(e);
                    // 設定且沒有捲軸出現
                 為                     // 取得當時索引
                    _that.nIndex = this.index;
                    //初次判斷
                    _that.firstLoad(_that.aBigimg_src[_that.nIndex],function(){
                        //插入結構物
                        _that.createBoxDom();
                        //關閉
                        _that.tools.getId('gy_photoBox_close').onclick = function(){
                           _that.removeBox();         
                        }
                        //判斷左右按鈕顯示
                        _that.btnIsShow();   
                        // 上一张
                        _that.btnPrev();
                        // 下一张
                        _that.btnNext();
                        // 加载图片
                        _that.imgChange(_that.aBigimg_src[_that.nIndex]);
                    });
                    // 重置窗口大小
                    _that.windowResize();
                     // 键盘事件
                    _that.keyEvent();
                    //阻止跳转
                    return false;   
                }
            }
        },
        createBoxDom:function(){
            var doc = document,
                exHtml = '',
                boxHtml = doc.createElement('div');
            boxHtml.id = 'gy_photoBox';
            doc.body.appendChild(boxHtml);
            if(typeof this.opt.appendHTML == 'string'){
                exHtml = this.opt.appendHTML;
            }
            boxHtml.innerHTML = '
'+
                            '
'+
                            ''+
                            '
'+exHtml+'
'+
                            '
'+
                                '原生javascript實作圖片彈窗互動效果_javascript技巧http://www.pconline.com.cn/blank.gif" />'+
                                '原生javascript實作圖片彈窗互動效果_javascript技巧'+
                                '
'+
                                    ''+
                                        ''+
                                        '/'+this.nLen+
                                    '
'+
                                    '

'+
                                '
'+
                            '
';
        },
        createCover:function(){
            // 建立覆蓋層
            var    doc = 文檔,且
                coverHtml = doc.createElement('div');
                coverHtml.id = 'gy_photoBox_cover';
            doc.body.appendChild(coverHtml);
            //設定覆蓋層的樣式
this.tools.setCss(this.tools.getId('gy_photoBox_cover'),{'height':(doc.body.scrollTop || doc.documentElement.scrollTop) (doc.documentElement.clientHeight) 'px'});
        },
        setBoxCss:function(){
            var    doc = 文檔,且
                nScrollTop = doc.body.scrollTop || doc.documentElement.scrollTop,
                nWindow_h = doc.documentElement.clientHeight,
                eBox_head_h = this.tools.getId('gy_photoBox_head').clientHeight,
                eBox = this.tools.getId('gy_photoBox'),
                eBoxPadding = 10,
                hold_h = nWindow_h - eBoxPadding - 50 - eBox_head_h,
                寬度 = this.nImgWidth ,
                高度 = this.nImgHeight;
            //alert('nWindow_h:'nWindow_h'-''eBoxPadding:'eBoxPadding'-''eBox_head_h:'eBox_head_h);
            // 圖片大小超過可見範圍,並進行縮放
            if(this.nImgHeight>hold_h){
                高度=hold_h,
                width = Math.ceil(this.nImgWidth*(height/this.nImgHeight));
            }
            //設定框在整個頁面中位置
            this.tools.setCss(eBox,{'width':width 'px',
                                    'height':eBoxhead_h 高度 'p                                  地                                     'topBox *n             this.tools.setCss(this.tools.getId('gy_photoBox_main'),{'width':寬度'px','height':高度'px'});
            //設定覆蓋層的樣式
            this.tools.setCss(this.tools.getId('gy_photoBox_cover'),{'height':nScrollTop doc.documentElement.clientHeight 'px'});
        },
        刪除方塊:函數(){
            var doc = 文檔;
            if(this.tools.getId('gy_photoBox')){
                doc.body.removeChild(this.tools.getId('gy_photoBox'));
            }
            if(this.tools.getId('gy_photoBox_cover')){
                document.body.removeChild(this.tools.getId('gy_photoBox_cover'));
            }
            this.tools.setCss(document.documentElement,{'height':'auto','overflow-y':'auto','_overflow-y':'scroll','overflow-x':'auto'}) ;
        },
        getData:function(){
            for(var n=0;n                 var src = this.oTarget[n].getAttribute('href'),
                    title = this.oTarget[n].getAttribute('title');
                this.aBigimg_src.push(src);
                if(!title) 標題 = '';
                this.aTitle.push(標題);
            }
        },
        btnIsShow:function(){
            this.tools.setCss(this.tools.getId('gy_photoBox_prev'),{'display':'block'});
            this.tools.setCss(this.tools.getId('gy_photoBox_next'),{'display':'block'});
            if(this.nIndex == 0) this.tools.setCss(this.tools.getId('gy_photoBox_prev'),{'display':'none'});
            if(this.nIndex == (this.nLen-1)) this.tools.setCss(this.tools.getId('gy_photoBox_next'),{'display':'none'});
        },
        imgChange:function(){
            var _that =這個,
                _src = this.aBigimg_src[this.nIndex],
                eLoadingTips = this.tools.getId('gy_photoBox_img_loading'),
                eImg = this.tools.getId('gy_photoBox_img'),
                eTitle = this.tools.getId('gy_photoBox_title'),
                eInfor = this.tools.getId('gy_photoBox_infor');
            // 顯示loading圖片
            this.tools.setCss(eLoadingTips,{'display':'block'});
            this.tools.setCss(eInfor,{'display':'none'});
            // 判斷左右按鈕顯示
            this.btnIsShow();
            // 圖片載入處理
            this.imgLoading({
                'src':_src,
                '成功':function(){
                    _that.tools.setCss(eLoadingTips,{'display':'none'});
                    _that.tools.setCss(eInfor,{'display':'block'});
                    // 設定真實圖片路徑,標題,目前頁碼
                    eImg.src = _src;
                    eTitle.innerHTML = _that.aTitle[_that.nIndex];
                    _that.tools.getId('gy_photoBox_index').innerHTML = (_that.nIndex 1);
                    // 設定樣式
                    _that.setBoxCss();
                    // 彈窗呈現
                    _that.tools.setCss(_that.tools.getId('gy_photoBox'),{'visibility':'visible'});
);
                    if(_that.tools.getId('gy_photoBox_firstLoad')){
                                     document.body.removeChild(_that.tools.getId('gy_photoBox_firstLoad'));
);                     }
                    // 每次切換執行的回呼函數
                    if(typeof _that.opt.onChange == 'function'){
                                     _that.opt.onChange({'src':_src,'index':_that.nIndex,'title":_.aTitle*                     }
                },
                'error':function(){
                    setTimeout(function(){
                        _that.tools.setCss(eLoadingTips,{'display':'none'});
                    },200);
                    eImg.src = 'gyPhotoBox/error.png';
                    eTitle.innerHTML = '暫時相關圖片';
                    _that.nImgWidth = 400;
                    _that.nImgHeight = 300;
                    _that.setBoxCss();
                    _that.tools.setCss(_that.tools.getId('gy_photoBox'),{'visibility':'visible'});
                    if(_that.tools.getId('gy_photoBox_firstLoad')){
                                     document.body.removeChild(_that.tools.getId('gy_photoBox_firstLoad'));
);                     }
                }
            });
        },
        btnPrev:function(){
            var _that = this;
            this.tools.getId('gy_photoBox_prev').onclick = function(){
                _that.nIndex--;
                _that.imgChange();
            }
        },
        btnNext:function(){
            var _that = this;
            this.tools.getId('gy_photoBox_next').onclick = function(){
                _that.nIndex ;
                _that.imgChange();
            }
        },
        keyEvent:function(){
            var _that = this;
            document.onkeydown = function(e){
                var e = e || window.event;
                開關(e.keyCode){
                    案例37:{
                        if(_that.nIndex != 0&&_that.tools.getId('gy_photoBox_prev')){
                            _that.nIndex--;
                            _that.imgChange();   
                        }   
                    };休息;
                    案例39:{
                        if(_that.nIndex != (_that.nLen-1)&&_that.tools.getId('gy_photoBox_next')){
                            _that.nIndex ;
                            _that.imgChange();   
                        }           
                    };休息;
                    案例27:{
                        _that.removeBox();                           
                    };休息;
                }
            }
        },
        /*
        @ src [String] 圖片的地址
        @success [函數] 圖片載入成功的回呼函數
        @error [函數] 圖片載入失敗的回呼函數
        */
        imgLoading:函數(opt){
            var _img = new Image(),
                _that = this;
            _img.onload = function(){
                _that.nImgWidth = this.width;
                _that.nImgHeight = this.height;
                if(typeof opt.success == '函數'){
                    setTimeout(function(){
                        opt.success();
                    },300);
                }
            }
            _img.onerror = function(){
                if(typeof opt.error){
                    opt.error();
                }           
            }
            //注意:放在onload事件下面,否則會出現BUG
            _img.src = opt.src;
        },
        以先載入:函數(src,回呼){
            var _that = 這個,
                html = document.createElement('div');
                html.id = 'gy_photoBox_firstLoad';
            document.body.appendChild(html);
this.tools.setCss(this.tools.getId('gy_photoBox_firstLoad'),{'top':(document.body.scrollTop || document.documentElement.scrollTop) (document.documentElement. ;
            if(typeof 回呼 == '函數') {
                回調();
            }
        },
        視窗調整大小:函數(){
            var _that = 這個,
                _timer = null;
            // 函數節流
            window.onresize = function(){
                清除逾時(_timer);
                _timer = setTimeout(function(){
                    if( _that.tools.getId('gy_photoBox')){
                       _that.setBoxCss();
                    }
                },100);
            }       
        },
        工具:函數(){
            返回{
                getEvent:function(e){
                    返回 e || window.event;
                },
                getTarget:function(e){
                    回傳 e.target || e.srcElement;
                },
                PreventDefault:function(e){
                    e.preventDefault?e.preventDefault():e.returnValue = false;
                },
                getId:函數(id){
                    return document.getElementById(id);
                },
                getCss:function(節點,值){
                    return node.currentStyle?node.currentStyle[value]:getCompulatedStyle(node,null)[value];
                },
                setCss:function(node,val){
                    for(var v in val){
                        節點.style.cssText = ';' v ':' val[v];
                    }
                }
            }
        }()
    }
    window.LGY_photoBox = LGY_photoBox;
})();

最終效果圖:

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
1 個月前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中