Jump to content
  • 0

Проблема со слоями за экраном


North-28
 Share

Question

Проблема заключается в том что бы спрятать изображения за экраном то есть за пределами видимой области.

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

также при просмотре на разных мониторах с разными диагоналями левый и правый бэкграунды должны выравниваться в соответствии с свободным для них местом от края экрана до контента соответственно. Сам контент должен быть по середине и при масштабировании также должен либо отдавать либо забирать место у бэкграунда

есть идеи?

stend.jpg

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
html, body {width: 100%; height: 100%; padding: 0; margin: 0;}
html {overflow-y: auto; overflow-x: hidden;}
body {
min-width: 1000px;
width: 1000px;
margin: 0 auto;
height: auto;
background: grey;
position: relative;
}
#left, #right {
position: absolute;
top: 0;
width: 500px;
background: red;
height: 100%;
}
#left {
left: -500px;
}
#right {
right: -500px;
}
</style>
</head>
<body>
<div id="left"></div>
<div id="right"></div>
<div id="main"></div>
</body>
</html>

UPD and Fixed

Link to comment
Share on other sites

  • 0

Мне кажется проще объединить два фона в один и выровнять его по центру. У такого фона должна быть "дырка" по центру равная ширине контента.

мне кажется с дыркой сильно увеличивается размер файла.. надо все по честному делать)

Link to comment
Share on other sites

  • 0

Если уж изображения с "дыркой" весят на порядок больше чем 2 отдельных, попробуйте такую конструкцию


<div class="left-bg"></div>
<div class="right-bg"></div>

<div id="wrap">
</div>

.left-bg {
width: 50%;
position: absolute;
left: 0;
top: 0;
height: высота фона; /* если ваш фон повторяется то это точно с "дыркой" надо делать*/
}
.right-bg {
width: 50%;
position: absolute;
right: 0;
top: 0;
height: высота фона;
}
#wrap {
width: 1000px;
margin: 0 auto;
/* эту часть есть ваш фон по причине разметки выше слоя с контентом*/
position: relative;
z-index: 10;
}

Edited by ruslan.savenok
Link to comment
Share on other sites

  • 0

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
html, body {width: 100%; height: 100%; padding: 0; margin: 0;}
html {overflow-y: auto; overflow-x: hidden;}
body {
min-width: 1000px;
width: 1000px;
margin: 0 auto;
height: auto;
background: grey;
position: relative;
}
#left, #right {
position: absolute;
top: 0;
width: 500px;
background: red;
height: 100%;
}
#left {
left: -500px;
}
#right {
right: -500px;
}
</style>
</head>
<body>
<div id="left"></div>
<div id="right"></div>
<div id="main"></div>
</body>
</html>

UPD and Fixed

Большущее спасибо.. попробую применить на его на практике

Link to comment
Share on other sites

  • 0

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
html, body {width: 100%; height: 100%; padding: 0; margin: 0;}
html {overflow-x: auto; overflow-y: hidden;}
body {overflow-y: auto; overflow-x: hidden; min-width: 1000px;}
#conteiner {
width: 1000px;
margin: 0 auto;
height: auto;
background: grey;
position: relative;
}
#left, #right {
position: absolute;
top: 0;
width: 500px;
background: red;
height: 100%;
}
#left {
left: -500px;
}
#right {
right: -500px;
}
</style>
</head>
<body>
<div id="conteiner">
<div id="left"></div>
<div id="right"></div>
<div id="main">
... Some content ...
</div>
</div>
</body>
</html>

Пофиксил горизонтальный скрол при уменьшении окна.

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