Может кто-нибудь помочь мне сделать плавающее меню в prototypeJS? Я нашел документацию для этого в jQuery, например здесь: net.tutsplus.com/tutorials/html-css-techniques/creating-a-floating-html-menu-using-jquery-and-css/ и здесь: manos.malihu .gr / jquery-floating-menu, но не могу понять, с чего начать для prototypeJS.
Итак, я получил это, сорта. Я нашел документацию здесь . Вот мой код:
<html>
<head>
<title>Prototype examples</title>
<script src="lib/prototype/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
Event.observe(window,'scroll', function(evt){
$('movable').setStyle({ top: 8 + document.viewport.getScrollOffsets().top + 'px' });
});
</script>
<style type="text/css">
#container {
background:#000;
padding:100px 10px 10px;
}
#movable {
position: absolute;
float:left;
width:18.5%;
height: 300px;
background-color: red;
}
#firstDiv {
background:#ccc;
float:right;
height:1200px;
width:80%;
}
.clear-both {clear:both;}
</style>
</head>
<body>
<div id="container">
<div id="movable"> Floating menu</div>
<div id="firstDiv">right</div>
<div class="clear-both"></div>
</div>
</body>
</html>
Так что теперь я пытаюсь получить его, чтобы он не был изменчивым при прокрутке, и поэтому меню не начинает двигаться, пока прокрутка не сместится вниз до 100px по вертикали или около того, так что она зацепляется на месте.