2014-02-19 63 views
3

鏈接爲http://thecodeclub.org/,並且存在YouTube視頻。YouTube嵌入的iframe在Safari中未顯示

在Chrome中正常工作,但iframe在Safari中保持空白?

有沒有其他人遇到過這個問題或者有解決辦法?

<div class="wrapper wrapper-style2"> 
<article id="work"> 
    <header> 
    <h2>What Most Schools Don't Teach</h2> 
    <p>Even rap stars are learning to code...</p> 
    </header> 
<div class="video-container"> 
<iframe width="560" height="315" src="https://www.youtube.com/embed/nKIu9yen5nc?rel=0" frameborder="0" allowfullscreen></iframe> 
    </div> 
<a href="#courses" class="button button-big">The Courses.</a> 

</article> 
</div> 
+0

不知道你是否修復了它,但我可以在Safari瀏覽器中看到視頻在小牛。也許Safari中的一些擴展問題可能會阻止它? – Nick

+0

嗨,尼克。解決它到底是隻是一個CSS故障。謝謝你的注意。 – PatGW

+0

@PatGW可以請你在這裏發佈你解決的CSS問題? –

回答

2

最後是導致問題的https。更改爲http,如下所示,它工作正常。

<iframe width="560" height="315" src="http://www.youtube.com/embed/KX5PdVd1-OU" frameborder="0" allowfullscreen></iframe>