自动滚动文字效果(Auto scroll text effect)

2019-10-30 04:58发布

我不知道是否有人知道如何做到这一点的二手效应此页面上的“你好高音”的文字? 这似乎是与使用jQuery或类似的东西循环动画自动滚动框的文本,但我不知道该怎么做。

如果任何人有解决方案,这将是非常赞赏!

谢谢!

Answer 1:

他们刚使用

jquery.bxslider.js

你可以在这里阅读它的文档:

http://bxslider.com/



Answer 2:

您可以通过任何垂直滑块脚本创建它。 只要使用文本,而不是任何图像。



Answer 3:

也许尝试这样的事情jQuery的平滑滚动到DIV 。 这是我的脚本,它滚动后的URL改变

    $('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;
    });


文章来源: Auto scroll text effect