20 lines
530 B
Plaintext
20 lines
530 B
Plaintext
<video style="opacity:0.3; z-index: -1" autoplay muted loop id="myVideo" @key="SelectedBrandName">
|
|
<source src="@("/video/" + SelectedBrandName + ".mp4")" type="video/mp4">
|
|
</video>
|
|
|
|
<script>
|
|
$(document).ready(function () {
|
|
var video = document.getElementById("myVideo");
|
|
console.log(video);
|
|
video.oncanplaythrough = function () {
|
|
video.muted = true;
|
|
video.play();
|
|
};
|
|
});
|
|
</script>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string SelectedBrandName { get; set; }
|
|
}
|