jQueryでカウントダウンタイマーのループ
jquery-countdownのタイマーを作っています。
同じ時間を何度も繰り返す タイマーにしたいのですが うまくいきません。
jquery-countdown
http://code.google.com/p/jquery-countdown/
demostration
http://jquery-countdown.googlecode.com/svn/trunk/index.html
このタイマーを ループさせたいと考えています。
15行目の
timerEnd: function() { alert('end!!'); },
を変更するかと思いますが どのように変更すれば 何度も繰り返すループになるでしょうか?
<html>
<head>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script src="http://jquery-countdown.googlecode.com/svn/trunk/js/jquery.countdown.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function(){
$('#counter').countdown({
stepTime: 60,
format: 'mm:ss',
startTime: "00:10",
image: 'http://jquery-countdown.googlecode.com/svn/trunk/img/digits.png',
digitWidth: 53,
digitHeight: 77,
timerEnd: function() { alert('end!!'); },
});
});
</script>
</head>
<body>
<div id="counter"></div>
</body>
</html>