isakhauge.github.io/nanosplash/
Fullscreen Nanosplash with spinner only.
ns.show()
Nanosplash inside the given element with spinner only.
ns.show(null, '#my-div')
Fullscreen Nanosplash with text and spinner.
ns.show('Hi')
Nanosplash inside the given element with text and spinner.
ns.show('Hi', '#my-div')
Remove the oldest Nanosplash residing inside the window body.
ns.hide()
Remove a specific Nanosplash by its ID.
ns.hide(id)
Remove all Nanosplashes.
ns.hide('*')
You can easily make Nanosplash look the way you want.
// Backdrop selector
.nsh::before
// Main wrapper selector
.ns
// Text selector
.nst
// Spinner selector
.nss
Read more here: Customization