Jump to content
  • 0

Убрать нижний отступ под видео


iiwanc
 Share

Question

Здравствуйте!
Простите, если не сюда пишу.
Уже несколько дней не могу найти свою ошибку.
Прошу помощи.

Пишу сайт.
Вверху страницы горизонтальное меню - фиксированное.
Под горизонтальным меню вставляю видео с текстом. Видео затеняется с помощью overlay.
Все вставляется, но под видео большой отступ, заполненный тенью от видео.

Как убрать большой отступ?
На скрине выделена область, которую необходимо убрать.
Сильно не пинайте, пожалуйста, только начинаю изучать это дело.

Сайт запускаю на OpenServer. В веб еще не выкладывал.

Index

<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Мой сайт</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="style/style-video.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather|PT+Sans+Caption:400,700&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon/favicon.ico">

 </head>
 <body>
   <div class="fullscreen-bg">
    <div class="overlay">
        <h1>Простой пример<br>фонового видео на сайте</h1>
    </div>
    <video loop="" muted="" autoplay="" poster="video/fotopromo.png" class="fullscreen-bg__video">
        <source src="video/videopromo.mp4" type="video/mp4">
    </video>
</div>
  <?php
include('header.php');
?>
  <div class="layout">
<?php
include('nav.php');
?>
   <div class="content">
    <h1>Название страницы</h1>
    <p>Бла-бла.</p>	
   </div>   
   </div>
   <?php
include('footer.php');
?>
 </body>
</html>

Style-video

.fullscreen-bg {
    overflow: hidden;
    z-index: -100;
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: 45%;
}
 
.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.overlay {
    background: rgba(0,0,0,0.6);
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.overlay h1 {
    text-align:center;
    color:#fff;
    font-size: 70px;
    margin-top:17%;
}
@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('../video/fotopromo.png') center center / cover no-repeat;
    }

    .fullscreen-bg__video {
        display: none;
    }
		.overlay h1 {
	    font-size: 40px;
	}
}

Понимаю, что строка 7 в коде style-video отвечает за это, но не знаю как правильно ее прописать.
Сейчас там прописано: padding-top:45%;
При уменьшении процента, на моем экране хорошо отображается.
Но что будет на других экранах?
При уменьшении окна браузера, тень опять появляется.

Screenshot_2021-01-23 Мой сайт.png

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy