自动刷新并在一个脚本中自动向上和向下滚动

时间:2016-09-16 08:18:45

标签: javascript php autoscroll

我已经有单独的自动刷新代码和自动滚动代码。

我希望他们在一个功能中......我怎么能这样做?

这是自动刷新

的代码
var auto_refresh = setInterval(function ()
{
  $('#load_tweets').load('http://myayg.com/index.php?route=salesTracker2.results').fadeIn("slow");
}, 10000); 

和我的自动滚动

function scroll(speed) {
  $('html, body').animate({ scrollTop: $(document).height() }, speed, function() {
    $(this).animate({ scrollTop: 0 }, speed);
  });
}

speed = 30000;

scroll(speed)
setInterval(function(){scroll(speed)}, speed * 2);

我想用一个脚本...我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

这应该有效....

function doRefreshAndScroll(speed) {
  $('#load_tweets').load('http://myayg.com/index.php?route=salesTracker2.results', function(){
    $('html, body').animate({ scrollTop: $(document).height() }, speed, function() {
      $(this).animate({ scrollTop: 0 }, speed);
    });
  }).fadeIn("slow")
}

var speed = 30000
setInterval(doRefreshAndScroll(speed), speed * 2)