關(guān)于photoswipe的data-size問題-自適應(yīng)寬高

photoswipe是一款非常優(yōu)秀的移動端圖片查看插件液肌,但是在使用的時候挟炬,有一個令人頭疼的問題(data-size)!這個屬性必須填寫嗦哆,且值需固定谤祖。這對我們來說是一個非常麻煩的問題,為了解決這個問題老速,上網(wǎng)搜了很多解決方案粥喜,最后還是解決了,其實主要還是圖片尺寸的獲取問題橘券!代碼如下:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="node_modules/photoswipe/dist/photoswipe.css">
    <link rel="stylesheet" href="node_modules/photoswipe/dist/default-skin/default-skin.css">
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .clearfix::before,
        .clearfix::after {
            display: block;
            content: '';
            visibility: hidden;
            height: 100%;
            clear: both;
        }

        body {
            padding-top: 2%;
        }

        .my-gallery {
            width: 90%;
            margin: 0 auto;
        }

        .my-gallery .img-dv {
            width: 100%;
            margin-bottom: 1%;
        }

        .my-gallery .img-dv a {
            display: block;
            width: 100%;
            text-align: center
        }

        .my-gallery .img-dv a img {
            width: 50%;
        }
    </style>
</head>

<body>


    <!--如果有多個data-pswp-uid 它的值是不能重復(fù)的-->
    <div class="my-gallery" data-pswp-uid="1">
        <figure>
            <div class="img-dv"><a href="img/img1-big.jpg" data-size="1920x1080"><img src="img/img1.jpg"></a></div>
            <figcaption style="display:none;">在這里可增加圖片描述</figcaption>
        </figure>
        <figure>
            <div class="img-dv"><a href="img/img2-big.jpg" data-size="1920x1080"><img src="img/img2.jpg"></a></div>
            <figcaption style="display:none;">在這里可增加圖片描述2</figcaption>
        </figure>
        <figure>
            <div class="img-dv"><a href="img/img3-big.jpg" data-size="1920x1080"><img src="img/img3.jpg"></a></div>
            <figcaption style="display:none;">在這里可增加圖片描述3</figcaption>
        </figure>
        <figure>
            <div class="img-dv"><a href="img/img4-big.jpg" data-size="1920x1080"><img src="img/img4.jpg"></a></div>
            <figcaption style="display:none;">在這里可增加圖片描述4</figcaption>
        </figure>
        <figure>
            <div class="img-dv"><a href="img/img5-big.jpg" data-size="1920x1080"><img src="img/img5.jpg"></a></div>
            <figcaption style="display:none;">在這里可增加圖片描述5在這里可增加圖片描述5在這里可增加圖片描述5</figcaption>
        </figure>
    </div>

    <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
        <div class="pswp__bg"></div>
        <div class="pswp__scroll-wrap">
            <div class="pswp__container">
                <div class="pswp__item"></div>
                <div class="pswp__item"></div>
                <div class="pswp__item"></div>
            </div>
            <div class="pswp__ui pswp__ui--hidden">
                <div class="pswp__top-bar">
                    <div class="pswp__counter"></div>
                    <button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
                    <!--<button class="pswp__button pswp__button&#45;&#45;share" title="Share"></button>-->
                    <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
                    <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
                    <div class="pswp__preloader">
                        <div class="pswp__preloader__icn">
                            <div class="pswp__preloader__cut">
                                <div class="pswp__preloader__donut"></div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
                    <div class="pswp__share-tooltip"></div>
                </div>
                <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
                </button>
                <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
                </button>
                <div class="pswp__caption">
                    <div class="pswp__caption__center"></div>
                </div>
            </div>
        </div>
    </div>
    <script src="node_modules/photoswipe/dist/photoswipe.min.js?"></script>
    <script src="node_modules/photoswipe/dist/photoswipe-ui-default.min.js"></script>

    <script>

        var ParseThumbnailElements = function (gallerySelector) {
            this.items=[];
            var slef=this;
            var domelement = document.querySelectorAll(gallerySelector)[0];
            var figuredoms = domelement.children;
            
            for (var i = 0; i < figuredoms.length; i++) {
                var figureEl=figuredoms[i];
                var linkEl=figuredoms[i].children[0].children[0]; //a標(biāo)簽
                var title;
                var el;
                var msrc;
                
                if (figureEl.children.length > 1) {
                    title = figureEl.children[1].innerHTML||'';
                }
                if (linkEl.children.length > 0) {
                       msrc = linkEl.children[0].getAttribute('src')||'';
                    }
                this.items.push({
                    src: linkEl.getAttribute('href'),
                    title:title,
                    el:figureEl,
                    msrc:msrc,
                    w: 0,
                    h: 0
                })
            }
            var j = 0;
            this.items.forEach(function (item) {
                var img = new Image();
                img.src = item.src;
                img.onload = function () {
                    item.w = img.naturalWidth;
                    item.h = img.naturalHeight;
                    j++;
                    // console.log(j == slef.items.length); 當(dāng)圖片信息全部加載完再調(diào)用initPhotoSwipeFromDOM
                    if (j == slef.items.length) {
                        initPhotoSwipeFromDOM(gallerySelector, slef.items)
                    }
                }
            })
            var initPhotoSwipeFromDOM = function (gallerySelector) {
              
                // 查找最近的父節(jié)點
                var closest = function closest(el, fn) {
                    return el && (fn(el) ? el : closest(el.parentNode, fn));
                };
                // 當(dāng)用戶點擊縮略圖觸發(fā)
                var onThumbnailsClick = function (e) {
                    e = e || window.event;
                    e.preventDefault ? e.preventDefault() : e.returnValue = false;
                    var eTarget = e.target || e.srcElement;

                    var clickedListItem = closest(eTarget, function (el) {
                        return (el.tagName && el.tagName.toUpperCase() === 'FIGURE');
                    });

                    if (!clickedListItem) {
                        return;
                    }
                    var clickedGallery = clickedListItem.parentNode,
                        childNodes = clickedListItem.parentNode.childNodes,
                        numChildNodes = childNodes.length,
                        nodeIndex = 0,
                        index;
                    for (var i = 0; i < numChildNodes; i++) {
                        if (childNodes[i].nodeType !== 1) {
                            continue;
                        }
                        if (childNodes[i] === clickedListItem) {
                            index = nodeIndex;
                            break;
                        }
                        nodeIndex++;
                    }
                    if (index >= 0) {
                        openPhotoSwipe(index, clickedGallery);
                    }
                    return false;
                };

                var photoswipeParseHash = function () {
                    var hash = window.location.hash.substring(1),
                        params = {};
                    if (hash.length < 5) {
                        return params;
                    }
                    var vars = hash.split('&');
                    for (var i = 0; i < vars.length; i++) {
                        if (!vars[i]) {
                            continue;
                        }
                        var pair = vars[i].split('=');
                        if (pair.length < 2) {
                            continue;
                        }
                        params[pair[0]] = pair[1];
                    }
                    if (params.gid) {
                        params.gid = parseInt(params.gid, 10);
                    }
                    return params;
                };

                var openPhotoSwipe = function (index, galleryElement, disableAnimation, fromURL) {

                    var pswpElement = document.querySelectorAll('.pswp')[0],
                        gallery,
                        options,
                        items;
                    items = slef.items;


                    // 這里可以定義參數(shù)
                    options = {
                        barsSize: {
                            top: 100,
                            bottom: 100
                        },
                        fullscreenEl: false,
                        shareButtons: [
                            { id: 'wechat', label: '分享微信', url: '#' },
                            { id: 'weibo', label: '新浪微博', url: '#' },
                            { id: 'download', label: '保存圖片', url: '{{raw_image_url}}', download: true }
                        ],
                        galleryUID: galleryElement.getAttribute('data-pswp-uid'),
                        getThumbBoundsFn: function (index) {
                            var thumbnail = slef.items[index].el.getElementsByTagName('img')[0], // find thumbnail
                                pageYScroll = window.pageYOffset || document.documentElement.scrollTop,
                                rect = thumbnail.getBoundingClientRect();
                            return { x: rect.left, y: rect.top + pageYScroll, w: rect.width };
                        }
                    };
                    if (fromURL) {
                        if (options.galleryPIDs) {
                            for (var j = 0; j < items.length; j++) {
                                if (items[j].pid == index) {
                                    options.index = j;
                                    break;
                                }
                            }
                        } else {
                            options.index = parseInt(index, 10) - 1;
                        }
                    } else {
                        options.index = parseInt(index, 10);
                    }
                    if (isNaN(options.index)) {
                        return;
                    }
                    if (disableAnimation) {
                        options.showAnimationDuration = 0;
                    }
                    gallery = new PhotoSwipe(pswpElement, PhotoSwipeUI_Default, slef.items, options);
                    gallery.init();


                };

                var galleryElements = document.querySelectorAll(gallerySelector);
                for (var i = 0; i < galleryElements.length; i++) {
                    galleryElements[i].setAttribute('data-pswp-uid', i + 1);
                    galleryElements[i].onclick = onThumbnailsClick;
                }
                var hashData = photoswipeParseHash();

                if (hashData.pid && hashData.gid) {
                    openPhotoSwipe(hashData.pid, galleryElements[hashData.gid - 1], true, true);
                }


            }


        }

        new ParseThumbnailElements('.my-gallery')


    </script>


</body>

</html>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末额湘,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子旁舰,更是在濱河造成了極大的恐慌锋华,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,204評論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件箭窜,死亡現(xiàn)場離奇詭異毯焕,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)磺樱,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,091評論 3 395
  • 文/潘曉璐 我一進(jìn)店門纳猫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來婆咸,“玉大人,你說我怎么就攤上這事芜辕∩薪荆” “怎么了?”我有些...
    開封第一講書人閱讀 164,548評論 0 354
  • 文/不壞的土叔 我叫張陵侵续,是天一觀的道長乖仇。 經(jīng)常有香客問我,道長询兴,這世上最難降的妖魔是什么乃沙? 我笑而不...
    開封第一講書人閱讀 58,657評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮诗舰,結(jié)果婚禮上警儒,老公的妹妹穿的比我還像新娘。我一直安慰自己眶根,他們只是感情好蜀铲,可當(dāng)我...
    茶點故事閱讀 67,689評論 6 392
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著属百,像睡著了一般记劝。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上族扰,一...
    開封第一講書人閱讀 51,554評論 1 305
  • 那天厌丑,我揣著相機(jī)與錄音,去河邊找鬼渔呵。 笑死怒竿,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的扩氢。 我是一名探鬼主播耕驰,決...
    沈念sama閱讀 40,302評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼录豺!你這毒婦竟也來了朦肘?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,216評論 0 276
  • 序言:老撾萬榮一對情侶失蹤双饥,失蹤者是張志新(化名)和其女友劉穎媒抠,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體兢哭,經(jīng)...
    沈念sama閱讀 45,661評論 1 314
  • 正文 獨居荒郊野嶺守林人離奇死亡领舰,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,851評論 3 336
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片冲秽。...
    茶點故事閱讀 39,977評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡舍咖,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出锉桑,到底是詐尸還是另有隱情排霉,我是刑警寧澤,帶...
    沈念sama閱讀 35,697評論 5 347
  • 正文 年R本政府宣布民轴,位于F島的核電站攻柠,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏后裸。R本人自食惡果不足惜瑰钮,卻給世界環(huán)境...
    茶點故事閱讀 41,306評論 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望微驶。 院中可真熱鬧浪谴,春花似錦、人聲如沸因苹。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,898評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽扶檐。三九已至凶杖,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間款筑,已是汗流浹背智蝠。 一陣腳步聲響...
    開封第一講書人閱讀 33,019評論 1 270
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留醋虏,地道東北人寻咒。 一個月前我還...
    沈念sama閱讀 48,138評論 3 370
  • 正文 我出身青樓哮翘,卻偏偏與公主長得像颈嚼,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子饭寺,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,927評論 2 355