2013-12-10 85 views

回答

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}&amp;controls=0&amp;showinfo=0" width="{width}" height="{height}" frameborder="no"></iframe>' 
     }); 
    }); 
    </script>