Last active
November 6, 2023 09:16
-
-
Save itseramin/f093e9fdd831ef153a5aafdf5163d9ac to your computer and use it in GitHub Desktop.
Vimeo background video for React with Styled Components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import styled from "styled-components" | |
import Vimeo from "@u-wave/react-vimeo" | |
export default function BackgroundVideo() { | |
return ( | |
<> | |
<VideoContainer> | |
<Video | |
background={true} | |
height={1080} | |
loop={true} | |
responsive | |
video="529949088" | |
width={1920} | |
/> | |
</VideoContainer> | |
<Overlay /> | |
</> | |
) | |
} | |
const VideoContainer = styled.div` | |
bottom: 0; | |
left: 0; | |
min-height: 100%; | |
min-width: 100%; | |
object-fit: cover; | |
object-position: center; | |
position: fixed; | |
right: 0; | |
top: 0; | |
z-index: -1; | |
` | |
const Video = styled(props => <Vimeo {...props} />)` | |
height: 56.25vw; // for a 16:9 aspect ratio, 9/16*100 = 56.25 | |
left: 50%; | |
min-height: 100vh; | |
min-width: 177.77vh; // for a 16:9 aspect ratio, 16/9*100 = 177.77 | |
position: absolute; | |
top: 50%; | |
transform: translate(-50%, -50%); | |
width: 100vw; | |
` | |
{/* | |
For a nice vintage and darkening effect | |
*/} | |
const Overlay = styled.div` | |
background-color: rgba(0, 0, 0, 0.66); | |
bottom: 0; | |
box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.5); | |
left: 0; | |
min-height: 100%; | |
min-width: 100%; | |
object-fit: cover; | |
object-position: center; | |
position: fixed; | |
right: 0; | |
top: 0; | |
z-index: -1; | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment