MyBB Community Forums

Full Version: loading bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to add loading bar like youtube?

[Image: tumblr_mjju8y0CXW1qea4hso1_1280.jpg]
Bump.
there are few jquery based plugins to achieve that... 

NProgress is one such plugin.. you can grab it from: https://github.com/rstacruz/nprogress...

the git page has details about uploading and installing it...
This seems a bit to complicated for me :/
all you need to do is to upload the nprogress.js and nprogress.css to your forum (probably inside jscripts folder) using a FTP and then add following codes to headerinclude template...

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/nprogress.js"></script>
<link type="text/css" rel="stylesheet" href="{$mybb->asset_url}/jscripts /nprogress.css">
<script>
NProgress.configure({ showSpinner: false }); //remove this to show a spinner
$(document).ready(function() {
NProgress.start();
NProgress.done();
});
</script>