이미지가 좌우로 반복적으로 움직이게 하고 싶은데요...
$('#foo').animate({ borderSpacing: 5 }, {
step: function(now,fx) {
$(this).css('-webkit-transform','rotate('+now+'deg)');
$(this).css('-moz-transform','rotate('+now+'deg)');
$(this).css('transform','rotate('+now+'deg)');
},
duration:'slow'
},'linear');
$('#foo').animate({ borderSpacing: -5 }, {
step: function(now,fx) {
$(this).css('-webkit-transform','rotate('+now+'deg)');
$(this).css('-moz-transform','rotate('+now+'deg)');
$(this).css('transform','rotate('+now+'deg)');
},
duration:'slow'
},'linear');
이게 계속 반복이 되어야 하는데 한번은 실행이 되는데 계속해서 반복되게 하는게 힘드네요 ㅠㅠ