基于 Tumblr 标签渲染背景



我想知道是否可以根据 Tumblr 中的标签渲染背景?

我的意思是,我发布关于一般生活和我喜欢的系列书籍,我希望当我发布关于生活的报价时,背景

颜色是黑色,当我发布关于这本书的报价时,背景颜色是蓝色。

这是否可能,如果可能,如何?

您可以使用jQuery将自定义属性或类添加到要更改其背景的元素中

,如下所示:
$(document).ready(function(){
  var tag = $('select the element where your tag is').text(); 
/*If there are more than one tag you'll have to work with 
the string to select //only the one you want, maybe with 
a switch if you have a limited number of options*/
  $('body').addClass(tag);
})

然后,使用 css,您可以使用如下所示的选择器更改它:

body.tag{
   background: #yourcolor;
}

将类{TagsAsClasses}添加到您的帖子中。然后用"生活"标记所有生活帖子,用"书"标记书籍帖子。

然后你可以像这样设置样式:

.life { background-color: black; }
.book { background-color: blue; }

相关内容

  • 没有找到相关文章

最新更新