我已经能够在我的博客 http://blog.seans.ws 上为单张照片发布我的照片,但Tumblr照片限制我的宽度为500px
如何让照片的布局更大,或者只是将功能放大并一个接一个地以高分辨率显示我的照片?这是照片集代码:
{block:Photoset}
<article>
<span class="break" style="padding-bottom: 19px;"></span>
{Photoset-500}
{block:Caption}
<p>{Caption}</p>
{/block:Caption}
<p></p>
<time>{TimeAgo}</time>
</article>
{/block:Photoset}
这是单张照片代码,我可以将照片变得很大:
{block:Photo}
<article>
<span class="break"></span>
<img src="{PhotoURL-HighRes}" class="highres">
<p>{Caption}</p>
<time>{TimeAgo}</time>
</article>
{/block:Photo}
谢谢!
答案 0 :(得分:9)
没有必要使用Javascript&amp; Tumblr API。
您可以使用{block:Photos}单独浏览每个Photoset中的照片。
例如,在您的示例中:
{block:Photoset}
<article>
<span class="break" style="padding-bottom: 19px;"></span>
<!-- Go through each Photo in the Photoset -->
{block:Photos}
<img src="{PhotoURL-HighRes}" class="highres">
{/block:Photos}
{block:Caption}
<p>{Caption}</p>
{/block:Caption}
<p></p>
<time>{TimeAgo}</time>
</article>
{/block:Photoset}
请记住,Documentation是你的朋友:)
答案 1 :(得分:2)
在结束体标记之前添加此脚本。这将增加或减少photoset的大小
<script type="text/javascript">
//This will change the source address and display the correct size.
$(".photoset").each(function() {
var newSrc = $(this).attr("src").replace('700','860');
$(this).attr("src", newSrc);
});
//This will get the new size of the iframe and resize the iframe holder accordingly.
$(function(){
var iFrames = $('.photoset');
function iResize() {
for (var i = 0, j = iFrames.length; i < j; i++) {
iFrames[i].style.height = iFrames[i].contentWindow.document.body.offsetHeight + 'px';}
}
if ($.browser.safari || $.browser.opera) {
iFrames.load(function(){
setTimeout(iResize, 0);
});
for (var i = 0, j = iFrames.length; i < j; i++) {
var iSource = iFrames[i].src;
iFrames[i].src = '';
iFrames[i].src = iSource;
}
} else {
iFrames.load(function() {
this.style.height = this.contentWindow.document.body.offsetHeight + 'px';
});
}
});
</script>
答案 2 :(得分:1)
如果你想保留Tumblr的photoset网格样式,请查看这个小jQuery插件:https://github.com/PixelUnion/Extended-Tumblr-Photoset
它扩展了Tumblr的默认照片集,包括EXIF数据,圆角,不同的装订线尺寸等。
免责声明:我在帮助创建它方面有一点作用;)
答案 3 :(得分:0)