Silver Library (Archived)
How to add video background with css in react? 본문
Face the fear, build the future/Library of Logging
How to add video background with css in react?
Ayin Kim 2022. 12. 16. 12:00반응형
생각한 것 과는 달리 너무 허망할 정도로 늘 하던 react 와 유사했지만, 그래도 기록을 남겨봅니다.
아마 저와 비슷한 생각을 한 분이 분명히 지금 이 글을 보고 있을테니까요.
import React from 'react'
import videoBackground from '../assets/sampleVideo.mp4'
const BackgroundPage = () => {
return (
<div className='main'>
<video src={videoBackground} autoPlay loop muted />
<div className='content'>
<h1>Welcome</h1>
<p>To this page.</p>
</div>
</div>
)
}
export default BackgroundPage
그리고 css 에서는 사이즈에 맞게 html의 video tag를 선언 후, 사이즈를 조정해서 넣으면 됩니다.
끝!
후기.
그래도 용량은 줄이시는편이.
SSR 방식이 아니라면 경우에 따라서는 조금 로딩이 걸릴지도 모르겠단 생각이 들었습니다.
'Face the fear, build the future > Library of Logging' 카테고리의 다른 글
개발 계획 (~ 23년 01월 09일) (0) | 2022.12.24 |
---|---|
올해의 주요 이벤트 기록 일지. (0) | 2022.12.19 |
[React.js] How to let client user to download file? (0) | 2022.12.07 |
React-query 로 해보는 axios (0) | 2022.11.28 |
CSS - transform: translate (0) | 2022.11.25 |