我在页面底部有一个锚,我用它滚动到页面的顶部(指向标题)。
HTML:
<script type="text/javascript">Sys.Application.add_load(BindEventToScrolls);</script><%--Since I've achor tag within update panel, to rebind the jquery events after upade panel udates, I am using this line of code--%>
<a class="
我有下面的功能,它检查用户的滚动位置,以便当他们滚动通过masthead时菜单变得固定。
function checkScrolling() {
if( $(window).scrollTop() > $('.masthead').height() ) { // we check against ACTUAL height
$('.menu').addClass('fixed');
}else {
$('.menu').removeClass('fixed');