我正在使用SoundCloud API中的数据在plotly(https://plot.ly)中开发一个应用程序。我想在我的交互式图表图形中添加一个SoundCloud图标,将人们指向特定的SoundCloud页面(可在此处找到图示安装说明:https://plot.ly/r/getting-started/)
请注意,可以轻松地将超链接添加到绘图图中 (http://help.plot.ly/adding-HTML-and-links-to-charts/)使用以下代码行:
<a href=”type URL here”>Type what you want user to see here </a>
以下是SoundCloud图标的示例代码,可以嵌入到网站中:(https://soundcloud.com/pages/embed):
<iframe allowtransparency="true" scrolling="no" frameborder="no" src="https://w.soundcloud.com/icon/?url=http%3A%2F%2Fsoundcloud.com%2Frihanna&color=orange_white&size=32" style="width: 32px; height: 32px;"></iframe>
是否可以在图表中嵌入此图标?
答案 0 :(得分:1)
不幸的是,plotly目前仅支持以下HTML标记:
sup
sub
b
i
a
span
br
em
因此,目前无法在图表图形上显示SoundCloud图标。
也就是说,如果你愿意设计一个完整的网页,你可以使用plotly.js轻松制作一个情节图,并用SoundCloud图标覆盖它。