let clock = new FlipClock($('.countdown').get(0), 3600 24 3, {
clockFace: 'DailyCounter',
countdown: true,
});
I set like above, but it always display like the photo, although i change name of the clockFace. Please help me find the reason, i read all issue, but nobody is like me
'.countdown' is a class selector - is that valid for your markup? If you only have a single timer, it's probably better to use an id selector (something like '#my-timer-id-here').
let clock = new FlipClock($('.countdown').get(0), 3600 24 3, { clockFace: 'DailyCounter', countdown: true, }); I set like above, but it always display like the photo, although i change name of the clockFace. Please help me find the reason, i read all issue, but nobody is like me