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

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

<!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>


    <!--如果有多個(gè)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é)點(diǎn)
                var closest = function closest(el, fn) {
                    return el && (fn(el) ? el : closest(el.parentNode, fn));
                };
                // 當(dāng)用戶點(diǎn)擊縮略圖觸發(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)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

友情鏈接更多精彩內(nèi)容