728x90
728x170
Blazor 에서 iframe 이용하여 Youtube 재생하는 방법입니다.
방법은 iframe 를 이용해 Youtube 주소를 넣으면 끝납니다.
@page "/counter"
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<p role="status">Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@if (currentCount % 2 == 0)
{
<iframe width="560" height="315" src="https://www.youtube.com/embed/oJYGSy6fRic" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
}
else
{
<iframe width="560" height="315" src="https://www.youtube.com/embed/m8e-FF8MsqU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
}
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}
결과
728x90
그리드형
'C# > Blazor' 카테고리의 다른 글
[C#/Blazor] Swagger 추가 및 시작페이지 설정하기 (0) | 2023.09.08 |
---|---|
[Blazor] BlazorComponentUtilities 의 CssBuilder, StyleBuilder 사용하기 (0) | 2023.08.03 |
[Blazor] div 항목 선택할 수 있는 구조로 만들기 (0) | 2023.07.31 |
[Blazor] Radzen Blazor Studio 로 CRUD 화면 만들기 (0) | 2023.07.31 |
[Blazor] Copy Clipboard (0) | 2023.07.27 |