我知道tumblr有defieret photoset尺寸{photoset-500},{photoset-400},{photoset-250},但我想改变宽度,所以宽度可以是420或350.我已经无处不在,无法找到帮助我做到这一点的代码。
答案 0 :(得分:2)
您可以使用{Photoset}调整照片组的大小以适合容器(最大尺寸700px)。
答案 1 :(得分: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 */ }
答案 2 :(得分:1)
在结束体标记之前添加此脚本。这将增加或减少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>