我正在使用2个不同的jquery插件,这两个插件都工作正常,但出于某种原因,我无法让它们一起工作。
全屏图片:
<script type="text/javascript">
var FullscreenrOptions = { width: 1024, height: 439, bgID: '#bgimg' };
// This will activate the full screen background!
jQuery.fn.fullscreenr(FullscreenrOptions);
</script>
滚动到div函数:
function GotoSection(divid)
{
$('#realBody').animate({scrollTop: $('#' + divid).offset().top}, 300);
}
我的HTML:
<!-- This is the background image -->
<img id="bgimg" src="img/background6.jpg" />
<!-- Here the "real" body starts, where you can put your website -->
<div id="realBody">
<div id="header">
<div class="content">
<img src="img/logo.png" align="left"/>
<ul id="menu">
<li><a id="mhome" name="home" class="selected" onclick="GotoSection('home');">Home</a></li>
</ul>
<div class="clear"></div>
</div>
</div>
<div id="container">
<div id="home" class="seperator"></div>
here is my home content
</div>
</div>
</div>
我的css:
#bgimg {
position:absolute;
z-index: -1;
}
#realBody{
position:absolute;
z-index: 5; /* Place the new body above the background image */
overflow:auto; /* restore scrollbars for the content */
height:100%;width:100%; /* Make the new body fill the screen */
top:120px;
}
body
{
height: 100%;
overflow: hidden;
background-color: #ffffff;
padding: 0;
margin: 0;
font-family:'HelveticaLTStdLight';
color:#0f508e;
}
卷轴搞砸了,它不会转到我发送的div。我认为我的错误就在这一行:
$('#realBody').animate({scrollTop: $('#' + divid).offset().top}, 300);
但不确定我需要将其更改为。
答案 0 :(得分:0)
你的开场和结局div数量不匹配。尝试更正此问题并查看是否修复了它。