如何在 React 页面嵌入 youtube 影片
使用 iframe 是最直接的方法,在 youtube 影片点选右键,选「复制嵌入程式码」,可以得到像下面的这段程式码
<iframe width="640" height="360" src="https://www.youtube.com/embed/daVASrwlU9c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
把这段程式码贴进 React 可以运作,但是没有 RWD 的效果,google 了一下找到解法,不多废话,直接附程式码