antifilter
Постоялец
- Регистрация
- 25 Сен 2007
- Сообщения
- 308
- Реакции
- 144
Для просмотра ссылки Войдиили Зарегистрируйся
В осле тожене скроллится
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Для просмотра ссылки Войдиили Зарегистрируйся
CSS:
#floater {
LEFT: 0px; position: fixed; TOP: 50px;
}
В коде:
<img src="images/plav.gif" id="floater" hspace="0" vspace="0" border="0" align="left" />
в Опере и Лисе работает, в Осле - нет. Что не так? Помогайте, друзья!
position:static;
<head>
<!--этот стиль чтоб не дрожжало при прокрутке-->
<style>
body
{
background: url('/n.gif') no-repeat;
background-attachment: fixed;
}
</style>
<!--/этот стиль чтоб не дрожжало при прокрутке-->
<!--этот стиль чтоб в IE работал FIXED-->
<style>
.fixed {
width: 18em; padding: 0.5em; background-color: #f5f5ea; position: fixed; top: 0px; right: 0px; //position: absolute; top: expression( eval(document.body.scrollTop) + 'px');
}
</style>
<!--/этот стиль чтоб в IE работал FIXED-->
</head>
<body>
<div style="height:200%;">
<div class="fixed">
Этот блок остается на месте при прокрутке и не дрожжит =)
</div>
</div>
</body>
Попробуйте написать в CSS:
HTML:position:static;
Отпишитесь о результате.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title> </title>
<style type="text/css">
#float{ position:fixed; right:0; top:100px; width:100px; height:100px; padding:10px; background-color:blue; }
</style>
<!--[if IE 6]>
<style type="text/css">
#float{ position:absolute; top:expression( runtimeStyle.top = (document.documentElement.scrollTop + 100) + "px" ); }
</style>
<![endif]-->
</head>
<body>
<div id="float">float</div>
some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content<br />some content
</body>
</html>
Неа: тогда и в Лисе перестает скроллиться.
position:fixed;
В осле тожене скроллится