0

我目前有两个相互影响的脚本。下面显示的脚本正在平滑滚动到锚点。我的第二个脚本使用 href # 锚链接到灯箱效果。我可以更改下面的脚本以使用不同于 href 和 # 的内容吗?

Javascript

<script src="js/jquery.easing.1.3.js"></script>
<script>
$(function() {
var lengthDiv = $('.desktop').find('li').length;
var current = 0;
$('a').bind('click',function(event){

var $anchor = $(this);
current = $anchor.parent().index();

$('html, body').stop().animate({
    scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
/*
if you don't want to use the easing effects:
$('html, body').stop().animate({
    scrollTop: $($anchor.attr('href')).offset().top
}, 1000);
*/
event.preventDefault();
});
$(document).keydown(function(e){e.preventDefault()})
$(document).keyup(function(e){
    var key = e.keyCode;
    if(key == 38 && current > 0){
        $('.desktop').children('li').eq(current - 1).children('a').trigger('click')
    }else if(key == 40 && current < lengthDiv){
        $('.desktop').children('li').eq(current + 1).children('a').trigger('click')
    }
})
});
</script>
4

1 回答 1

0

你的线

$('a').bind('click', function(){})

将为每个“a”标签附加一个点击事件。如果您希望它附加到不同的元素或选择器,则必须对其进行更改。

$('a.scroll').bind('click', function(){})

举个例子。

于 2013-05-23T16:59:31.373 回答