我試圖破解我的方式進入tumblr photoset,我想我找到了最大700顯示大小的修復。Tumblr Photoset
讓我們說,這是由{Photoset-700}產生的正常的iframe:
<iframe class="photoset" scrolling="no" frameborder="0" height="1048" width="700" style="border:0px; background-color:transparent; overflow:hidden;" src="http://www.georgefratila.ro/post/20314734048/photoset_iframe/esssk/tumblr_m1tp5634Si1qzc7t7/700/false"></iframe>
有沒有辦法來改變iframe的寬度,改變src網址的最後一部分,放大時保持寬高比?
寬度= 「700」 改變這個值到860 SRC = 「http://www.georgefratila.ro/post/20314734048/photoset_iframe/esssk/tumblr_m1tp5634Si1qzc7t7/700/false」 改變的最後部分src/700/false轉換爲/ 860/false
我覺得我看到它在網站上用jquery製作,但我不記得名字,我會研究我的歷史,也許我會找到它。
感謝您的幫助。
Edit.1 我想我排序的幾乎一切:
$('iframe.photoset').each(function() {
$(this).attr("width", function(index, old) {
return old.replace("700", "860");
});
$(this).attr("src", function(index, old) {
return old.replace("/700/false", "/860/false");
});
});
,我現在唯一的問題是高度,它不規模,以適應的iframe。