Help!! How can I code this design in WIX Corvid?
Is it possible to change the Styling of the current countdown timer, and make it reset to 1 minute segments, with a sound effect at the end of the timer? If not, how can I design this for my client in WIX? I’ve noticed it’s hard to get regular javascript coding to run it.
@deedmallard yes. it’s because I decided to show the new round percentage every 1 second. And since a second is 1.6% of a minute, it accumulates to 2% over time.
If you want, you can make it show the new percentage every half a second (for example) and then it won’t skip anything.
It plays sound when it hits the zero (to do that I’ve added an audio element, linked it to an external mp3 alarm sound, made it collapsed on load (so it won’t have any graphic), and added a command to play once it hits the zero.
@deedmallard Many mobile browsers don’t allow automatic playing without any user action. It’s a kind of security policy, so websites won’t be able to play without an explicit permission.
@victoria64453 The audio is too far from the click. But you can try to find a longer audio file, start playing it at volume 0 onClick, and then when the timer hits the zero, turn the volume up. Maybe that will work.