用過(guò)photoswipe做移動(dòng)端圖片預(yù)覽的小伙伴都知道,這個(gè)插件存在一個(gè)data-size,必須要填寫(xiě),但是如果你的圖片尺寸比例不是固定的,那這個(gè)屬性就會(huì)帶來(lái)無(wú)盡的煩惱,我個(gè)人在使用jQuery時(shí),發(fā)現(xiàn)一種解決辦法
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);
})
};