LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

PhotoSwipe.js需要获取图片宽高的处理方法

freeflydom
2024年12月18日 15:58 本文热度 196

​PhotoSwipe.js传入图片URL的同时,还需要配上图片的宽高,但这次的情况是无法预先知道宽高,所以先设置宽高100,然后查看或划动下一张图片的时候再更新当前图片宽高信息。

下面是做法:

<link rel="stylesheet prefetch" href="js/PhotoSwipe-master/dist/photoswipe.css">

<link rel="stylesheet prefetch" href="js/PhotoSwipe-master/dist/default-skin/default-skin.css">

<script src="js/jquery.min.js"></script>

<script src="js/PhotoSwipe-master/dist/photoswipe.js"></script>

<script src="js/PhotoSwipe-master/dist/photoswipe-ui-default.min.js"></script>

<!-- Root element of PhotoSwipe. Must have class pswp. -->

<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">

    <!-- Background of PhotoSwipe. 

         It's a separate element as animating opacity is faster than rgba(). -->

    <div class="pswp__bg"></div>

    <!-- Slides wrapper with overflow:hidden. -->

    <div class="pswp__scroll-wrap">

        <!-- Container that holds slides. 

            PhotoSwipe keeps only 3 of them in the DOM to save memory.

            Don't modify these 3 pswp__item elements, data is added later on. -->

        <div class="pswp__container">

            <div class="pswp__item"></div>

            <div class="pswp__item"></div>

            <div class="pswp__item"></div>

        </div>

        <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->

        <div class="pswp__ui pswp__ui--hidden">

            <div class="pswp__top-bar">

                <!--  Controls are self-explanatory. Order can be changed. -->

                <div class="pswp__counter"></div>

                <button class="pswp__button pswp__button--close" title="Close (Esc)"></button>

                <!--<button class="pswp__button pswp__button--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>

                <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->

                <!-- element will get class pswp__preloader--active when preloader is running -->

                <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 type="text/javascript">

var pswpElement = document.querySelectorAll('.pswp')[0];

var pswp =null;

var data= {

      startIndex:"",

      data: [{src:'a.png',w:'200',h:'200',updfsize:0},{src:'b.png',w:'200',h:'200',updfsize:0}]

  }

function img_obj(index){

  var imageSrc = data.data[index].src;  //获取图片真实尺寸

var theImage = new Image();

  theImage.src = imageSrc;

theImage.onload=function(){

data.data[index].src=imageSrc;

data.data[index].w=theImage.width;

data.data[index].h=theImage.height;

data.data[index].updfsize=1;

theImage=undefined;

pswp.updateSize(true); //获取图片真实宽高后更新调整

}

}    

function openPhotoViewer(file_url, ix) {

    var items = data.data;

    var options = {

        index: ix,

        shareButtons: false

    };

    pswp = new PhotoSwipe(pswpElement, PhotoSwipeUI_Default, items, options);

pswp.listen('afterChange', function() {

// 获取当前幻灯片的索引

var currentIndex = pswp.getCurrentIndex(); 

// 获取当前幻灯片对象

var currentItem = pswp.getItemAt(currentIndex);  

// 获取当前幻灯片的宽度、高度、标题和URL

var currentWidth = currentItem.w;

var currentHeight = currentItem.h;

var currentSrc = currentItem.src; // 图片的URL

var updfsize = currentItem.updfsize; // 是否真实宽高

if(updfsize==0){

img_obj(currentIndex);

}

});

    pswp.init();

}

openPhotoViewer('b.png',1)

</script>



该文章在 2024/12/18 15:58:23 编辑过
关键字查询
相关文章
正在查询...
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2024 ClickSun All Rights Reserved