jQuery - проблема с scrollFollow

Discussion in 'PHP' started by preda1or, 31 Aug 2009.

  1. preda1or

    preda1or Member

    Joined:
    27 Oct 2008
    Messages:
    167
    Likes Received:
    96
    Reputations:
    6
    HTML:
    <html>
    <head>
    <script type="text/javascript" src="jquery-1.3.2.js"></script>
    <script type="text/javascript" src="jquery.scrollFollow.js"></script>
    <script type="text/javascript" language="javascript">
    	$(document).ready(
    		function()
            {
    			$('#message_box').scrollFollow( { speed:1000,relativeto: bottom } );
    			$('#close_message').click(
    				function()
    				{
    					$('#message_box').animate({ top:"+=0px",opacity:0 }, "slow");
    				}
    			);
    			$('#open_message').click(
    				function()
    				{
    					$('#message_box').animate({ top:"+=0px",opacity:1 }, "slow");
    				}
    			);
            }
    	);
    </script>
    <style>
    #message_box { 
    	position: absolute; 
    	bottom: 0px; left: 0px; 
    	z-index: 1; 
    	background-image:url('background.png');
    	padding:0px;
    	border:0px;
    	text-align:center; 
    	width:100%;
    	height:40px;
    }
    </style>
    </head>
    <body>
    <div>
    Здесь остальное содержание Вашей страницы
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <img id="open_message" style="float:right;cursor:pointer" src="cross.png" />
    </div>
    <div id="message_box">logotypes<img id="close_message" style="float:right;cursor:pointer" src="cross.png"></div>
    </body>
    </html>
    Вопрос, почему "менюшка" не ездит за нижней границей?
     
  2. FireFenix

    FireFenix Elder - Старейшина

    Joined:
    3 Jun 2009
    Messages:
    390
    Likes Received:
    115
    Reputations:
    23
    не проще юзать стиль position:fixed ?
     
    1 person likes this.
  3. preda1or

    preda1or Member

    Joined:
    27 Oct 2008
    Messages:
    167
    Likes Received:
    96
    Reputations:
    6
    решил проблему)