Jump to content
  • 0

Масштабируемый блок с видео на фоне


pimpa
 Share

Question

Приветствую!

Установлен готовый шаблон на _http://www.free-solutions.net/ Под слайдер добавили фоном видео. Возможно ли добиться совпадения нижней границы слайдера и видео-фона при масштабировании? <video> перемещали в другие блоки, объединяли, пока ничего не помогает, только прописывание каждого шага через @media.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Сделайте одно видео широким, скажем 2500 px, а другое по ширине слайдера, центральную часть широкого. Фоновое видео подкладываете под слайдер (position: absolute;left:50%;margin-left:-1250px;). Родительский элемент масштабируете, высота обоих видео по высоте родителя.

<roditel>
  <video fon>...</video>
  <video slider>...</video>
</roditel>

<style>
  roditel{width:100%;height:500px; и т.д.}
  [fon]{position:absolute;margin-left:-1250px;left:50%; и т.д.}
  [slider]{width:960px;margin:0 auto; и т.д.}
</style>

 

Link to comment
Share on other sites

  • 0

Я бы сделал структуру такой :

<video src="">      
</video>
<section class=" header">
 <nav></nav>
 <div class="slider"></div>
</section>

Затем нужно сделать высоту видео и высоту блока "header" одинаковой. Хоть и стараюсь избегать такого подхода, и только в крайних случаях, если не получается через ксс, я делаю через джс.

function() {
	            $(".equal-height-columns").each(function() {
	                heights = [];
	                $(".equal-height-column", this).each(function() {
	                    $(this).removeAttr("style");
	                    heights.push($(this).height()); // write column's heights to the array
	                });
	                $(".equal-height-column", this).height(Math.max.apply(Math, heights)); //find and set max
	            });
	        }

Слайдер прижимаем к нижней границе хедера, навигацию - к верхней. Должно получиться.

Link to comment
Share on other sites

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