bestelbus22@lemmy.world to Programmer Humor@programming.dev · 1 month agoFor that modern web feelinglemmy.worldimagemessage-square44fedilinkarrow-up1386
arrow-up1386imageFor that modern web feelinglemmy.worldbestelbus22@lemmy.world to Programmer Humor@programming.dev · 1 month agomessage-square44fedilink
minus-squarefunkless_eck@sh.itjust.workslinkfedilinkarrow-up24·edit-21 month ago“make the page transparent and show a spinning icon, wait 750ms, then make the page display normally” it’s a fake loading screen
minus-squarebestelbus22@lemmy.worldOPlinkfedilinkarrow-up9·1 month agoAnd perform the action you actually want to do after the delay
minus-squareAnUnusualRelic@lemmy.worldlinkfedilinkEnglisharrow-up2·1 month agoShouldn’t it be 750 seconds? Who’s going to notice a slowdown that’s below one second?
minus-squarebleistift2@sopuli.xyzlinkfedilinkEnglisharrow-up5·1 month agoTo your first question: The arguments to setTimeout and setInterval (and I believe everything else in JavaScript) are in milliseconds. Second question: Everybody, unless you’re a 90-year old, demented grandma.
minus-squareAnUnusualRelic@lemmy.worldlinkfedilinkarrow-up1·1 month agoWith most web pages pulling megabytes of crud to display anything, I’m not sure a 0.75 second delay would change anything much.
minus-squarexthexder@l.sw0.comlinkfedilinkarrow-up3·1 month ago3/4 of a second is quite noticeable. Most UI animations are only 100-200ms, and if you disable them, things feel faster but less “polished”. Try it out yourself on your phone UI if you’ve got an Android.
“make the page transparent and show a spinning icon, wait 750ms, then make the page display normally”
it’s a fake loading screen
And perform the action you actually want to do after the delay
It’s a real loading screen
It’s a real fake loading screen.
Shouldn’t it be 750 seconds? Who’s going to notice a slowdown that’s below one second?
To your first question: The arguments to
setTimeoutandsetInterval(and I believe everything else in JavaScript) are in milliseconds.Second question: Everybody, unless you’re a 90-year old, demented grandma.
With most web pages pulling megabytes of crud to display anything, I’m not sure a 0.75 second delay would change anything much.
3/4 of a second is quite noticeable. Most UI animations are only 100-200ms, and if you disable them, things feel faster but less “polished”. Try it out yourself on your phone UI if you’ve got an Android.