HTML5 规定了一种通过 video 元素来包含视频的标准方法。 HTML <video> 标签 | 菜鸟教程
举例
<video class="video-bg" autoplay loop>
<source th:src="@{images/registerbackground.mp4}" type="video/mp4">
</video>
.video-bg{
position:absolute;
top: 0;
left:0;
/* bottom: 0; */
min-width: 100%;
min-height: 100%;
z-index:-1;
}