我在我的网站上使用了两个脚本。 这是为了页面之间的滑动功能。
$(document).ready(function() {
$('#wrapper').scrollTo('#item2', 0);
$('a.panel').click(function () {
$('a.panel').removeClass('selected');
$(this).addClass('selected');
current = $(this);
$('#wrapper').scrollTo($(this).attr('href'), 800);
return false;
});
$(window).resize(function () {
resizePanel();
});
});
function resizePanel() {
width = $(window).width();
height = $(window).height();
mask_width = width * $('.item').length;
$('#debug').html(width + ' ' + height + ' ' + mask_width);
$('#wrapper, .item').css({width: width, height: height});
$('#mask').css({width: mask_width, height: height});
$('#wrapper').scrollTo($('a.selected').attr('href'), 0);
}
这个是用于图像幻灯片放映。
script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"
当我实现幻灯片时,页面之间的滑动功能将不再起作用,这是因为最新的脚本。我该如何解决这个问题?