HTML / CSS: iframe YouTube в качестве фона с элементами управления и наложением кнопок - PullRequest
0 голосов
/ 28 сентября 2018

Я просто дурачился с HTML / CSS, чтобы создать мне страницу с YouTube-видео с кнопкой сверху.

* { box-sizing: border-box; }
.video-background {
  background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
}
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-wrapper {
  width: 290px;
  height: 110px;
  position: relative;
  margin: 40px auto 0;
}
.btn-wrapper:hover .btn-inner {
  top: -4px;
  transform: scale(1, 1);
  cursor: pointer;
}
.btn-wrapper__container {
  border-bottom: 2px solid #15b5e2;
  position: absolute;
  width: 100%;
  height: 80px;
}
.btn-wrapper__container:before, .btn-wrapper__container:after {
  border-bottom: 2px solid #15b5e2;
  width: 96%;
  left: 2%;
  bottom: -8px;
  content: "";
  position: absolute;
}
.btn-wrapper__container:after {
  width: 92%;
  left: 4%;
  bottom: -14px;
}
.btn-wrapper__container .btn-inner {
  width: 104.2%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: -2.1%;
  border: 2px solid #15b5e2;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Source Code Pro', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  background: #10131c;
  transform: scale(0.96, 0.96);
  transition: all 0.3s;
  z-index: 4;
}
.btn-wrapper__container .btn-inner__text {
  text-decoration: none;
  color: #15b5e2;
}
<div class="video-background">
  <iframe src="https://www.youtube.com/embed/TMzouTzim0o?controls=1&showinfo=0&rel=0&autoplay=1&loop=1&playlist=W0LHTWG-UmQ" frameborder="0" allowfullscreen></iframe>
</div>


<div class="btn-wrapper">
  <div class="btn-wrapper__container">
    <div class="btn-inner">
      <a class="btn-inner__text" href="#">Hover Me</a>
    </div>
  </div>
</div>

Пока кнопка не добавлена, видео показывается в фоновом режиме, отзывчиво и в полноэкранном режиме с включенными элементами управления.Если я добавлю кнопку наведения, я больше не смогу управлять видео в фоновом режиме (360 видео).

Как включить элементы управления видео и при этом использовать кнопку?

Я, к сожалению, не эксперт по кодированию, я собрал все кусочки кода, который нашел в руководствах.

1 Ответ

0 голосов
/ 28 сентября 2018

Удалите свойство css z-index: -99 из класса .video-background {...}, которое решит проблему.

* {
  box-sizing: border-box;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  /* z-index: -99; */ /* Remove this line  */
}

.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-wrapper {
  width: 290px;
  height: 110px;
  position: relative;
  margin: 40px auto 0;
}

.btn-wrapper:hover .btn-inner {
  top: -4px;
  transform: scale(1, 1);
  cursor: pointer;
}

.btn-wrapper__container {
  border-bottom: 2px solid #15b5e2;
  position: absolute;
  width: 100%;
  height: 80px;
}

.btn-wrapper__container:before,
.btn-wrapper__container:after {
  border-bottom: 2px solid #15b5e2;
  width: 96%;
  left: 2%;
  bottom: -8px;
  content: "";
  position: absolute;
}

.btn-wrapper__container:after {
  width: 92%;
  left: 4%;
  bottom: -14px;
}

.btn-wrapper__container .btn-inner {
  width: 104.2%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: -2.1%;
  border: 2px solid #15b5e2;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Source Code Pro', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  background: #10131c;
  transform: scale(0.96, 0.96);
  transition: all 0.3s;
  z-index: 4;
}

.btn-wrapper__container .btn-inner__text {
  text-decoration: none;
  color: #15b5e2;
}
<div class="video-background">
  <iframe src="https://www.youtube.com/embed/TMzouTzim0o?controls=1&showinfo=0&rel=0&autoplay=1&loop=1&playlist=W0LHTWG-UmQ"
    frameborder="0" allowfullscreen></iframe>
</div>
<div class="btn-wrapper">
  <div class="btn-wrapper__container">
    <div class="btn-inner">
      <a class="btn-inner__text" href="#">Hover Me</a>
    </div>
  </div>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...