我想知道是否有人知道如何在'Hello Treble'文本中使用on this page的效果?它似乎是一个自动滚动框文本动画,带有jquery或类似的循环,但我不知道该怎么做。
如果有人有解决方案,我们将非常感激!
谢谢!
答案 0 :(得分:0)
您可以通过任何垂直滑块脚本创建它。只需使用文字而不是任何图像。
答案 1 :(得分:0)
答案 2 :(得分:0)
也许尝试类似 jquery-smooth-scroll-to-div 的内容。这是我的脚本,它会在滚动后更改网址
$('a[href^="#"]').on('click',function(e){
$target = $(this).attr('href');
e.preventDefault();
$('.active').removeClass('active');
$(this).addClass('active');
if($(this).attr('href') == '#') {
$('html, body').stop().animate({
scrollTop: $('body').offset().top
}, 1000, function(){location.hash = $target;});
} else {
$('html, body').stop().animate({
scrollTop: $($target).offset().top + 57 - $('.main_menu').height()
}, 1000,function(){location.hash = $target});
}
return false;
});