操作 Tumblr 的默认 iframe 控件
有什么方法可以操纵 tumblr 控件吗?它们非常丑陋且呈灰色。我想知道是否有任何方法可以将 iframe#tumblr_controls {display:none;}
添加到我的 CSS 中,并重新创建具有相同功能但外观不同的所有控件。 Tumblr 控件 (iFrame)
Is there any way I can manipulate the tumblr controls? They are quite ugly and gray. I want to know if there is any way to add iframe#tumblr_controls {display:none;}
to my CSS and recreate all the controls with the same functionality but with a different look. Tumblr controls (iFrame)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,替换所有功能相当容易。正如您所建议的,您可以通过以下方式隐藏 Tumblr 的默认设置:
在索引页面上,您需要仪表板、关注和电子邮件。您无法确定是否需要取消关注,但始终显示关注应该不会太糟糕。
仪表板 URL:
关注 URL:
电子邮件 URL:
在永久链接页面上,您还需要转发和点赞。这些有点困难,但我这里有一个示例: http://like-button.tumblr.com/< /a>
Reblog 使用未记录的变量
{ReblogURL}
。您只需将其设置为链接的href
即可:要添加 Like 功能,您可以使用以下 URL 并将其设置为不可见
:src
的src
属性。 iframe>
:like
或unlike
: 最后八位的字符{ReblogURL}
:{PostID}
示例:
您需要输入两个变量
{ReblogURL}
和{PostID}
,进入您的{block:Posts}
块。然后使用脚本构建 URL 并设置 src。Yes, it's fairly easy to replace all the functionality. As you suggested, you can hide Tumblr's default with:
On index pages, you need Dashboard, Follow, and Email. You can't determine if you need Unfollow, but always showing Follow shouldn't be too bad.
Dashboard URL:
Follow URL:
Email URL:
On permalink pages you also need Reblog and Like. These are a little more difficult but I have a sample here: http://like-button.tumblr.com/
Reblog uses an undocumented variable,
{ReblogURL}
. You simply make it the thehref
of a link:To add Like functionality, you use the following URL and set it as the
src
attribute of an invisible<iframe>
:<command>
:like
orunlike
<oauthId>
: last eight characters of{ReblogURL}
<postId>
:{PostID}
Example:
You need to put both variables,
{ReblogURL}
and{PostID}
, into your{block:Posts}
block. Then use script to build the URL and set thesrc
.现在不同了。只需添加
到 CSS(“编辑 HTML”标签内)。
It's different now. Just add
To the CSS (inside tag of 'Edit HTML').