responsive bg video

PHOTO EMBED

Wed Apr 07 2021 19:54:00 GMT+0000 (Coordinated Universal Time)

Saved by @lalodoble #css

.bgVideo {
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	background: none;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;

	video {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: none;
	}
}

@media(min-aspect-ratio: 16/9) {
	.videoBg  video {
		width: 100%;
		height: auto;
	}
}

@media(max-aspect-ratio: 16/9) {
	.videoBg  video {
		width: auto;
		height: 100%;
	}
}
content_copyCOPY