这个很棘手,如果你用iframe嵌入代码就可以了:
<iframe width="560" height="315" src="http://www.youtube.com/watch?v=gzKAut3sVrw?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
然而,使用PrettyPhoto我需要像这样使用它: http://www.youtube.com/watch?v=gzKAut3sVrw?rel=0&controls=0&showinfo=0 在这里工作的唯一事情是rel = 0
关于如何使其发挥作用的任何想法?
答案 0 :(得分:2)
使用PrettyPhoto时,我也在努力隐藏YouTube控件。 PrettyPhoto允许您指定iframe标记。您需要在此处添加额外的YouTube参数({path}
之后)。
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({
keyboard_shortcuts: false,
iframe_markup: '<iframe src ="{path}&controls=0&showinfo=0" width="{width}" height="{height}" frameborder="no"></iframe>'
});
});
</script>