我看到很多热门网站都使用youtube订阅按钮,如附图所示。但我无法知道如何在网站please check the image for more deatails
中使用该订阅按钮这里是使用相同订阅按钮的故事选择的html文本
< div class =“video-byline”> 订阅Storypick
答案 0 :(得分:1)
您必须使用此代码
<iframe width="560" height="315" src="https://www.youtube.com/embed/QFu_Kmn3qOk" frameborder="0" allowfullscreen></iframe>
<script src="https://apis.google.com/js/platform.js"></script>
<script>
function onYtEvent(payload) {
if (payload.eventType == 'subscribe') {
// Add code to handle subscribe event.
} else if (payload.eventType == 'unsubscribe') {
// Add code to handle unsubscribe event.
}
if (window.console) { // for debugging only
window.console.log('YT event: ', payload);
}
}
</script>
点击此链接https://developers.google.com/youtube/youtube_subscribe_button
您可以使用按钮
选择许多配置希望这有帮助
保重和快乐编码
答案 1 :(得分:0)