2021年に働く:
2021年の作業開始/一時停止時にアバターとタイトルを非表示にするなど、情報/コントロールのないレスポンシブ埋め込み。以前の回答に似ていますが、パディングハックの代わりにアスペクト比を使用し、デモを使用しています
コントロールが必要な場合は、JS APIを使用して独自のものを作成できます。ただし、YouTube ビデオをどのように埋め込んでも、何らかの方法でソース内で見つけることは常に可能です。
CodePen デモ
<div class="youtube-container">
<iframe src="https://www.youtube.com/embed/WhY7uyc56ms?autoplay=1&mute=1&loop=1&color=white&controls=0&modestbranding=1&playsinline=1&rel=0&enablejsapi=1&playlist=WhY7uyc56ms" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
.youtube-container {
overflow: hidden;
width: 100%;
/* Keep it the right aspect-ratio */
aspect-ratio: 16/9;
/* No clicking/hover effects */
pointer-events: none;
}
.youtube-container iframe {
/* Extend it beyond the viewport... */
width: 300%;
height: 100%;
/* ...and bring it back again */
margin-left: -100%;
}