我試着去convet這個jQuery代碼以純JS代碼,但我失敗了jQuery代碼以純JavaScript
$('.number-wrapper').each(function() {
$(this).prop('Counter',0).animate({
Counter: $(this).text()
}, {
duration: 1000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
這是我嘗試
var x = document.getElementsByClassName("number-wrapper");
for(var i =0; i<x.length;i++){
}
我不能從道具方法繼續 能有人幫助這個
發佈您的嘗試 –