用過photoswipe做移動端圖片預覽的小伙伴都知道,這個插件存在一個data-size,必須要填寫,但是如果你的圖片尺寸比例不是固定的,那這個屬性就會帶來無盡的煩惱,我個人在使用jQuery時,發現一種解決辦法
window.onload=function(){
auto_data_size();
};
function auto_data_size(){
var imgss= $("figure img");
$("figure img").each(function() {
var imgs = new Image();
imgs.src=$(this).attr("src");
var w = imgs.width,
h =imgs.height;
$(this).parent("a").attr("data-size","").attr("data-size",w+"x"+h);
})
};
希望對你有所幫助