jQuery backstretch图像自动移动和返回

时间:2015-05-28 09:08:12

标签: javascript jquery css jquery-backstretch

我在我的网站上使用backstretch。现在尝试从左到右自动移动背景幕。但直到现在,它只是向一个方向移动。我期待着那个动态图像的连续循环。

如何重置/移回图像?

backstretch.js:http://dev.disaster-kfw.com/fileadmin/template/js/slidebackground.js

更多javascript for moving-effect&初始化

var images = ['fileadmin/template/gfx/background02-03.jpg'];
        jQuery.backstretch( images[Math.floor(Math.random() * images.length)] );
        jQuery(function($){
            (function swoop(element) {
                element
                    .animate({'margin-left':'-=5px'}, 100, function(){
                        setTimeout(function(){
                            swoop(element);
                        }, 0);
                    });
            })($('#backstretch img'));
        });

生成此HTML输出

<div id="backstretch" style="left: 0px; top: 0px; position: fixed; overflow: hidden; z-index: -999999; margin: 0px; padding: 0px; height: 100%; width: 100%;"><img src="fileadmin/template/gfx/background02-03.jpg" style="position: absolute; margin: 0px 0px 0px -3404.98890491151px; padding: 0px; border: none; z-index: -999999; width: 3006px; height: 835px; left: -551.5px; top: 0px;"></div>

抱歉发布的html代码有点难看,不知道做对了......

编辑:

非常感谢,但我认为这不是我需要的。

我想我需要计算图像宽度和左边距,以便从左移动到左右移动。

所以我尝试计算图像的宽度,但是

iWidth = jQuery("#backstretch img").width();

始终为NULL。

iWidth = $("#backstretch img").width();

打破整个javascript。

我认为这可能是一个解决方案,可以编写一个名为backswoop的第二个函数来计算margin-left。然后做一个关于margin-left和image-width的条件。

iWidth = jQuery('#backstretch img').width();
jQuery(function($){
  (function swoop(element) {
    element.animate({'margin-left':'-=5px'}, 50, function(){
        setTimeout(function(){
           if(element.css('margin-left')*-1 <= iWidth){
             swoop(element);
           }else{
             backswoop(element);
           }
        }, 0);
    });
  })($('#backstretch img'));
  (function backswoop(element) {
    element.animate({'margin-left':'+=5px'}, 50, function(){
        setTimeout(function(){
           if(element.css('margin-left') >= 0){
             swoop(element);
           }else{
             backswoop(element);
           }
        }, 0);
    });
  })($('#backstretch img'));
});

但是,因为我对javascript不太好,所以不起作用: - (

1 个答案:

答案 0 :(得分:1)

在移动元素之前,使用jQuery .data()存储原始边距。这样,当您想要重置时,可以将边距设置为该值的动画。

此代码并不完美。这只是为了让您了解自己可以做些什么。

//I would avoid global variables, but I don't know enough of your code.
swoopingElement =  $('#backstretch img');
swoopingElement.data("startingmargin", $('#backstretch img').css('marginLeft'));

(function swoop(element) {
  element
    .animate({'margin-left':'-=5px'}, 100, function(){
      swoopingElement.data("timer", setTimeout(function(){
        swoop(element);
      }, 0));
    });
})($('#backstretch img'));

function resetElement(element){
  //First shut down any remaining animation
  element.stop();
  clearTimeout(element.data("timer"));  //even though it's zero...  it might be active.
  //Send element back
  element.animate({'margin-left':element.data("startingmargin")}, 100);
  //Or for instant return.
  // element.css({'margin-left':element.data("startingmargin")});
};

https://api.jquery.com/jquery.data/