画像を上/左/右/下のセクションにスライスして、YouTube ビデオの周りに配置できます (YouTube プレーヤーの端をオーバーレイします)。
スライスされた画像の代わりに背景色を使用する jsfiddle をモックアップしました。
HTML:
<div id="TV">
<div id="top"></div>
<div id="left"></div>
<div id="right"></div>
<div id="bottom"></div>
<div id="playButton">play<div>
</div>
CSS:
#TV{position:absolute;width:500px;height:300px;}
#top{position:absolute;top:0;width:500px;height:20px;background-color:red;}
#left{position:absolute;top:0;left:0;width:20px;height:300px;background-color:red;}
#right{position:absolute;top:0;right:0;width:20px;height:300px;background-color:red;}
#bottom{position:absolute;bottom:0;width:500px;height:20px;background-color:red;}
#playButton{height:100px;width:100px;border-radius:100px;background-color:yellow;left: 200px;position: absolute;top: 90px;}
#playButton:hover{background-color:red;}
また、「フレーム」画像の中央にあるキャンバスに描画する、実際のこの例もあります。 ここ
唯一の注意点は、固定の高さと幅、および絶対位置を使用する必要があることです。