MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / animateValue

Function animateValue

static/js/accounts.js:622–628  ·  view source on GitHub ↗
(element, value)

Source from the content-addressed store, hash-verified

620
621// 数字动画
622function animateValue(element, value) {
623 element.style.transition = 'transform 0.2s ease';
624 element.style.transform = 'scale(1.1)';
625 setTimeout(() => {
626 element.style.transform = 'scale(1)';
627 }, 200);
628}
629
630// 加载账号列表
631async function loadAccounts() {

Callers 1

loadStatsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected