0

我的网站上有以下代码....

首先,我如何通过单击链接来启动动画/功能?

那么,我将如何“冻结”动画中的最后一帧?(可能是计时器?)

谢谢。

HTML 标记:

<div id="anim"></div>

CSS:

#anim {
width: 14px; height: 14px;
background-image: url(http://mail.google.com/mail/im/emotisprites/wink2.png);
background-repeat: no-repeat; 
}

Javascript:

var scrollUp = (function () {
  var timerId; // stored timer in case you want to use clearInterval later

  return function (height, times, element) {
    var i = 0; // a simple counter
    timerId = setInterval(function () {
      if (i > times) // if the last frame is reached, set counter to zero
        i = 0;
      element.style.backgroundPosition = "0px -" + i * height + 'px'; //scroll up
      i++;
    }, 100); // every 100 milliseconds
  };
})();

// start animation:
scrollUp(14, 42, document.getElementById('anim'))

这是一个小提琴:http: //jsfiddle.net/ctF4t/

4

2 回答 2

1

您的代码已经为此做好了准备,请阅读第二行:

  var timerId; // stored timer in case you want to use clearInterval later

setInterval 用于定义一个函数,该函数以一定的时间间隔反复运行。clearInterval 用于停止此操作。在动画结束时,不要将帧计数器 i 重置为 0,而是使用 clearInterval 一起停止动画:

        if (i > times) { 
            clearInterval(timerId);
        }

这是一个用于调试的额外输出的小提琴:http: //jsfiddle.net/bjelline/zcwYT/

于 2013-05-05T08:22:42.953 回答
0

嗨,您能否返回 js 对象句柄开始和停止 ..timerId作为私有我们无法从外部函数访问。

var scrollUp = (function () {
    var timerId, height, times ,i = 0 , element; 

    return {
        stop : function(){
            clearInterval( timerId );
        },
        init :function( h, t, el ){
            height = h;
            times = t;
            element =el ;
        },
        start : function ( ) {
            timerId = setInterval(function () {
              // if the last frame is reached, set counter to zero
              if (i > times) {
                i = 0;
              }
              //scroll up         
              element.style.backgroundPosition = "0px -" + i * height + 'px'; 
              i++;
            }, 100); // every 100 milliseconds
          }
    };
})();

请参阅http://jsfiddle.net/ctF4t/1/中的完整操作。希望这会帮助你

于 2013-05-05T08:30:50.247 回答