用于计数金额的计数器

发布于 2024-12-19 23:42:13 字数 1435 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇俏 2024-12-26 23:42:13

如果您希望计数器在会话之间逐渐增加,并避免使用某种服务器端状态,也许您可​​以将计数器值基于时间函数?

<div>
lt;span class="moneyCounter"></span> raised so far.
</div>
<script type="text/javascript">

var setCounter = function(){
  var counterValue = 
    (new Date().getTime() - new Date('01/01/2011').getTime())/(1000*60*6);
  $('.moneyCounter').text(counterValue);
}

setInterval(setCounter,10000);
setCounter();

</script>

这将使该值每十秒增加 1。您可能想要使用更令人兴奋的函数,甚至可能是间隔的随机更新间隔。

If you want the counter to increase gradually between sessions, and avoid using some kind of server side state, maybe you can base the counter value on a function of time?

<div>
lt;span class="moneyCounter"></span> raised so far.
</div>
<script type="text/javascript">

var setCounter = function(){
  var counterValue = 
    (new Date().getTime() - new Date('01/01/2011').getTime())/(1000*60*6);
  $('.moneyCounter').text(counterValue);
}

setInterval(setCounter,10000);
setCounter();

</script>

This will raise the value with 1 every ten seconds. You might want to use a more exciting function, and maybe even a random update interval for the interval.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文