我在以下页面上有一个 javascript 滑块:crothersenvironmental.com/crothers/index.html,它不断将其下方的相关段落文本发送到屏幕一侧。您可以在右侧的滑块下方看到它。单击滑块上方的相关数字后,每次单击数字时,您都会看到文本向右移动,直到它们从屏幕上移出并消失。此外,一旦您单击#1,页脚就会向上移动,然后在您单击任何其他数字后又向下移动。
任何帮助、想法或方向都会非常有帮助。首先十分感谢。
这是我正在使用的 js 脚本:
$('#recentprojects li a').click(function() {
var $this = $(this);
if ( !$this.parent('li').hasClass('selected') ) {
var url = this.href,
height = $('#recentworkimage img').css('height');
$this
.parents('ol')
.find('li.selected')
.removeClass('selected');
$this.parent('li').addClass('selected');
$('#recentworkimage')
.css('height', height)
.children('img')
.fadeOut(1000, function() {
$(this).attr('src', url).load(function() {
$(this).fadeIn(1000);
});
$this.parents('#recentprojects')
.find('p:last')
.empty()
.html('<p>' + $this.attr('title') + '</p>');
});
}
return false;
});