CSS – Video Inside A Computer

Create a pure css video inside a computer ?

Guys Before we begin i want to tell you guys that ? Please subscribe to my channel – https://youtube.com/codingfire?sub_confrimation=1 please.. But More than that hope you are safe and happy ??


This content originally appeared on DEV Community and was authored by CoderZ90

Create a pure css video inside a computer ?

Guys Before we begin i want to tell you guys that ? Please subscribe to my channel - https://youtube.com/codingfire?sub_confrimation=1 please.. But More than that hope you are safe and happy ??

Step One

So the first step is to download the necessary image and video, in this project we will need 1 image and 1 video. image is for the frame of the computer and video which will be inside the computer. Guys the tutorial video is also there so if you want to check feel free to do it ??

See this image -

One image used is the frame and the video inside the computer

Here are the links to download the image and the video ?

Image Link - https://raw.githubusercontent.com/CoderZ90/Video-Inside-Computer-Using-CSS/main/computer.png

Video Link - https://github.com/CoderZ90/Video-Inside-Computer-Using-CSS/blob/main/video.mp4

Step 02

So in this step we will start from html and the step 03 will be the css, the html is very small and basic

Here we are creating a <div> with the class of computer and then we are inserting our image and then our video

<!DOCTYPE html>
<!-- Coding by CodingFire - youtube.com/CodingFire -->
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>CSS - Video Inside a Computer | CodingFire</title>
</head>
<body>
   <div class="computer">
       <!-- Computer Image -->
       <img class="computerBorder" src="./computer.png" alt="">
       <!-- video -->
       <video src="video.mp4" muted loop autoplay></video>
   </div>
</body>
</html>

Step 03

So the last step is css

here the main part is we are fitting the video and computer frame image in such a way that it look like the video is inside the computer. We are using position absolute and relative to do it. check the css code below btw source code is also providing and video also


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
}

.computer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 450px;
    overflow: hidden;
}

.computerBorder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 350px;
    overflow: hidden;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

video {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    /* Put this value too  */
    z-index: -1;
}

I hope you like the blog and it helped you ??
as i said the source code and the video is also available so here it is

Source Code Link - https://github.com/CoderZ90/Video-Inside-Computer-Using-CSS

Video Link - this video is made by me and please subscribe to my channel it really motivates me to do more

https://www.youtube.com/watch?v=IWiYWezOqm8

Happy Coding ?


This content originally appeared on DEV Community and was authored by CoderZ90


Print Share Comment Cite Upload Translate Updates
APA

CoderZ90 | Sciencx (2021-09-15T03:14:57+00:00) CSS – Video Inside A Computer. Retrieved from https://www.scien.cx/2021/09/15/css-video-inside-a-computer/

MLA
" » CSS – Video Inside A Computer." CoderZ90 | Sciencx - Wednesday September 15, 2021, https://www.scien.cx/2021/09/15/css-video-inside-a-computer/
HARVARD
CoderZ90 | Sciencx Wednesday September 15, 2021 » CSS – Video Inside A Computer., viewed ,<https://www.scien.cx/2021/09/15/css-video-inside-a-computer/>
VANCOUVER
CoderZ90 | Sciencx - » CSS – Video Inside A Computer. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/09/15/css-video-inside-a-computer/
CHICAGO
" » CSS – Video Inside A Computer." CoderZ90 | Sciencx - Accessed . https://www.scien.cx/2021/09/15/css-video-inside-a-computer/
IEEE
" » CSS – Video Inside A Computer." CoderZ90 | Sciencx [Online]. Available: https://www.scien.cx/2021/09/15/css-video-inside-a-computer/. [Accessed: ]
rf:citation
» CSS – Video Inside A Computer | CoderZ90 | Sciencx | https://www.scien.cx/2021/09/15/css-video-inside-a-computer/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.