我知道 tumblr 有默认的照片集大小 {photoset-500}、{photoset-400}、{photoset-250},但我想更改宽度,以便宽度可以是 420 或 350。我到处都看过并且找不到帮助我执行此操作的代码。
问问题
25126 次
3 回答
2
您可以使用 {Photoset} 来调整照片集的大小以适应容器(最大尺寸 700 像素)。
于 2014-07-19T13:06:32.687 回答
1
在结束正文标记之前添加此脚本。这将增加或减少照片集的大小
<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>
于 2012-10-31T14:09:47.113 回答
1
您无法使用 Tumblr 标记更改图像的默认大小,但您可以使用CSS直观地更改大小。
Tumblr 标记:
{block:Photoset}
{block:Photos}
<img src="{PhotoURL-500}" class="photoset-img" />
{/block:Photos}
{/block:Photoset}
CSS:
.photoset-img { width: 420px; /* can be any value you want */ }
于 2012-07-18T03:30:10.937 回答