採用輪播控制項對表格中的圖片檔案進行展示,當點擊表格中的圖片檔案時,使用輪播控制項(Swiper)顯示指定的圖片,同時,可以左右翻頁,前後瀏覽所有的圖片。
(1)使用JS創造Swiper的軀幹(Swiper相當於靈魂,靈魂必須依附肉體才能運作)。
__createPreviewHtml: function(){ if($('#__sc1').length>0) return; var html = '<p id="__sc1" class="swiper-container" style="z-index:9999;">' + ' <a href="javascript:void(0);" id="__sc_closeBtn" class="closeBtn" title="close"> X </a>' + ' <p class="swiper-wrapper"> ' + '</p> ' + '<p class="swiper-pagination"></p>' + '<p class="swiper-button-prev"></p>' + '<p class="swiper-button-next"></p>' + '</p>'; $(document.body).append(html); $('#__sc_closeBtn').on('click',this.__hidePreviewBox); }
(2)遍歷表格中的圖片文件,並塞入Swiper的軀幹,取得點擊圖片檔案的索引號碼(index),URL(透過檔案ID唯一識別)。
var index = 0; var i = 0; me._grid.findRow(function(row){ var fileId2 = row.fileId; var fileName2 = row.fileName.toLowerCase(); if(fileName2 && imgReg.test(fileName2)==true){ if(fileId == fileId2){ index = i; } var picParam = me.fileService + "/preview?fileId=" + encodeURIComponent(fileId2); var imgHtml = '<img src="' + picParam + '"/>'; var $slide = $('<p class="swiper-slide">' + imgHtml + '</p>'); $('.swiper-wrapper').append($slide); i++; } }); if(typeof(mySwiper) != 'undefined'){ mySwiper.removeAllSlides(); }
(3)建立Swiper控件,同時使用Swiper的slideTo(index)方法定位到指定的位置,顯示圖片。
//$('.swiper-pagination span').eq(index).trigger('click'); });
以上是IE9下Swiper控制項不能準確定位到指定頁面問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!