我正在构建一个音乐应用程序,我希望有一个'观看Youtube'链接。 是否可以将YT徽标直接打开到建议的视频?
如何整合这样的功能?
我基本上构建了一个媒体应用程序,显示用户可以收听的所有歌曲的列表。我希望在每个歌曲条目旁边添加一个Youtube图标,并让用户可以选择在点击时在Youtube上观看。
由于 索尼娅
答案 0 :(得分:0)
你提出的问题不太正确,但如果你要求这个问题 - 你可以去
// Comment: target="_blank" for people to open another window. <br/>
<a href="https://www.youtube.com/" target="_blank">
<img src="https://www.youtube.com/yt/about/media/images/brand-resources/icons/YouTube_icon_full-color.svg" width="100px" height="100px" />
</a>
<br/>
// Comment: change link inside brackets in order to get different image src="https://www.youtube.com/yt/about/media/images/brand-resources/icons/YouTube_icon_full-color.svg"
// Comment: change the link inside brackets to use custom youtube link ,I have just picked the homepage to make it easy href="https://www.youtube.com/"
好吧,就像在html中这样,希望你明白这一点