Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
How to set a site background like this site
www.hashtagmyass.com[^]
Posted
Updated 22-Dec-16 22:40pm
v3

Need to add below code to implement :

css*****************
CSS
.video-block {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}
.text-wrapper {
    position: relative;
    top: 30%;
    z-index: 2;
    margin: 0px auto;
    max-width: 720px;
    text-align: center;
}

html code ************
HTML
<body>
<div class="text-wrapper">
  <h1>Heading</h1>
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Suscipit qui voluptatum enim est deserunt assumenda, aspernatur quam aperiam!</p>
  <a href="#" class="content__cta">Link</a>
</div>
<video id="demo" class="video-block" autoplay="autoplay" loop="loop" muted="" width="300" height="150">
<source src="http://thenewcode.com/assets/videos/polina.webm" type="video/webm">
<source src="http://thenewcode.com/assets/videos/polina.mp4" type="video/mp4">
<source src="media/demo.ogv" type="video/ogg" />
</body>

I Hope this will help you to implement -:)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900