2012年10月10日 星期三

Youtube iframe影片蓋住網頁浮動div elem

之前用時就有發現此問題,但當初youtube還可以選舊版程式碼,所以沒特別注意去處理。

最近客戶使用時沒辦法點選舊版程式碼(object),只好用iframe的方式卻發現會蓋住div圖層。

網路上找到了方法,只能說youtube不可能沒發現這問題,但大概就是懶得幫你加這句上去-.-

轉錄自:YIJEN'S BLOG

bug fixed code demo


Before

<iframe width="420" height="315" src="http://www.youtube.com/embed/678uZ7S_tKs" frameborder="0" allowfullscreen=""></iframe>

After

<iframe width="420" height="315" src="http://www.youtube.com/embed/678uZ7S_tKs?wmode=opaque" frameborder="0" allowfullscreen=""></iframe>