Good art is a taste, good design is an opinion.


Come as guest, stay as family.
Board Index

Come as guest, stay as family.


You are not connected. Please login or register

Foto

[Javascript] Youtube-like loading bar



View previous topic View next topic Go down Message [Page 1 of 1]

1
Offline

  nanako

nanako
Punbb Guru
Punbb Guru

[Javascript] Youtube-like loading bar Alerte10

Tutorial: Youtube-like loading bar

Lately, youtube has added a feature when you visit a link inside the website, you will see a progress/loading bar. Using this tutorial, you can achieve it.

Credits to rstacruz(add credits button doesn't work)


--> Tutorials, tips and tricks <--
Youtube-like loading bar



- Javascript
Code:
[panda=js]/*! NProgress (c) 2013, Rico Sta. Cruz
 *  http://ricostacruz.com/nprogress */
;
(function(factory) {

    if (typeof module === 'function') {
        module.exports = factory(this.jQuery || require('jquery'));
    } else if (typeof define === 'function' && define.amd) {
        define(['jquery'], function($) {
            return factory($);
        });
    } else {
        this.NProgress = factory(this.jQuery);
    }

})(function($) {
    var NProgress = {};

    NProgress.version = '0.1.2';

    var Settings = NProgress.settings = {
        minimum: 0.08,
        easing: 'ease',
        positionUsing: '',
        speed: 200,
        trickle: true,
        trickleRate: 0.02,
        trickleSpeed: 800,
        showSpinner: false,
        template: '<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'
    };

    /**
    * Updates configuration.
    *
    *    NProgress.configure({
    *      minimum: 0.1
    *    });
    */
    NProgress.configure = function(options) {
        $.extend(Settings, options);
        return this;
    };

    /**
    * Last number.
    */

    NProgress.status = null;

    /**
    * Sets the progress bar status, where `n` is a number from `0.0` to `1.0`.
    *
    *    NProgress.set(0.4);
    *    NProgress.set(1.0);
    */

    NProgress.set = function(n) {
        var started = NProgress.isStarted();

        n = clamp(n, Settings.minimum, 1);
        NProgress.status = (n === 1 ? null : n);

        var $progress = NProgress.render(!started),
            $bar = $progress.find('[role="bar"]'),
            speed = Settings.speed,
            ease = Settings.easing;

        $progress[0].offsetWidth; /* Repaint */

        $progress.queue(function(next) {
            // Set positionUsing if it hasn't already been set
            if (Settings.positionUsing === '') Settings.positionUsing = NProgress.getPositioningCSS();

            // Add transition
            $bar.css(barPositionCSS(n, speed, ease));

            if (n === 1) {
                // Fade out
                $progress.css({
                    transition: 'none',
                    opacity: 1
                });
                $progress[0].offsetWidth; /* Repaint */

                setTimeout(function() {
                    $progress.css({
                        transition: 'all ' + speed + 'ms linear',
                        opacity: 0
                    });
                    setTimeout(function() {
                        NProgress.remove();
                        next();
                    }, speed);
                }, speed);
            } else {
                setTimeout(next, speed);
            }
        });

        return this;
    };

    NProgress.isStarted = function() {
        return typeof NProgress.status === 'number';
    };

    /**
    * Shows the progress bar.
    * This is the same as setting the status to 0%, except that it doesn't go backwards.
    *
    *    NProgress.start();
    *
    */
    NProgress.start = function() {
        if (!NProgress.status) NProgress.set(0);

        var work = function() {
            setTimeout(function() {
                if (!NProgress.status) return;
                NProgress.trickle();
                work();
            }, Settings.trickleSpeed);
        };

        if (Settings.trickle) work();

        return this;
    };

    /**
    * Hides the progress bar.
    * This is the *sort of* the same as setting the status to 100%, with the
    * difference being `done()` makes some placebo effect of some realistic motion.
    *
    *    NProgress.done();
    *
    * If `true` is passed, it will show the progress bar even if its hidden.
    *
    *    NProgress.done(true);
    */

    NProgress.done = function(force) {
        if (!force && !NProgress.status) return this;

        return NProgress.inc(0.3 + 0.5 * Math.random()).set(1);
    };

    /**
    * Increments by a random amount.
    */

    NProgress.inc = function(amount) {
        var n = NProgress.status;

        if (!n) {
            return NProgress.start();
        } else {
            if (typeof amount !== 'number') {
                amount = (1 - n) * clamp(Math.random() * n, 0.1, 0.95);
            }

            n = clamp(n + amount, 0, 0.994);
            return NProgress.set(n);
        }
    };

    NProgress.trickle = function() {
        return NProgress.inc(Math.random() * Settings.trickleRate);
    };

    /**
    * Waits for all supplied jQuery promises and
    * increases the progress as the promises resolve.
    *
    * @param $promise jQUery Promise
    */
    (function() {
        var initial = 0,
            current = 0;

        NProgress.promise = function($promise) {
            if (!$promise || $promise.state() == "resolved") {
                return this;
            }

            if (current == 0) {
                NProgress.start();
            }

            initial++;
            current++;

            $promise.always(function() {
                current--;
                if (current == 0) {
                    initial = 0;
                    NProgress.done();
                } else {
                    NProgress.set((initial - current) / initial);
                }
            });

            return this;
        };

    })();

    /**
    * (Internal) renders the progress bar markup based on the `template`
    * setting.
    */

    NProgress.render = function(fromStart) {
        if (NProgress.isRendered()) return $("#nprogress");
        $('html').addClass('nprogress-busy');

        var $el = $("<div id='nprogress'>")
            .html(Settings.template);

        var perc = fromStart ? '-100' : toBarPerc(NProgress.status || 0);

        $el.find('[role="bar"]').css({
            transition: 'all 0 linear',
            transform: 'translate3d(' + perc + '%,0,0)'
        });

        if (!Settings.showSpinner)
            $el.find('[role="spinner"]').remove();

        $el.appendTo(document.body);

        return $el;
    };

    /**
    * Removes the element. Opposite of render().
    */

    NProgress.remove = function() {
        $('html').removeClass('nprogress-busy');
        $('#nprogress').remove();
    };

    /**
    * Checks if the progress bar is rendered.
    */

    NProgress.isRendered = function() {
        return ($("#nprogress").length > 0);
    };

    /**
    * Determine which positioning CSS rule to use.
    */

    NProgress.getPositioningCSS = function() {
        // Sniff on document.body.style
        var bodyStyle = document.body.style;

        // Sniff prefixes
        var vendorPrefix = ('WebkitTransform' in bodyStyle) ? 'Webkit' :
            ('MozTransform' in bodyStyle) ? 'Moz' :
            ('msTransform' in bodyStyle) ? 'ms' :
            ('OTransform' in bodyStyle) ? 'O' : '';

        if (vendorPrefix + 'Perspective' in bodyStyle) {
            // Modern browsers with 3D support, e.g. Webkit, IE10
            return 'translate3d';
        } else if (vendorPrefix + 'Transform' in bodyStyle) {
            // Browsers without 3D support, e.g. IE9
            return 'translate';
        } else {
            // Browsers without translate() support, e.g. IE7-8
            return 'margin';
        }
    };

    /**
    * Helpers
    */

    function clamp(n, min, max) {
        if (n < min) return min;
        if (n > max) return max;
        return n;
    }

    /**
    * (Internal) converts a percentage (`0..1`) to a bar translateX
    * percentage (`-100%..0%`).
    */

    function toBarPerc(n) {
        return (-1 + n) * 100;
    }


    /**
    * (Internal) returns the correct CSS for changing the bar's
    * position given an n percentage, and speed and ease from Settings
    */

    function barPositionCSS(n, speed, ease) {
        var barCSS;

        if (Settings.positionUsing === 'translate3d') {
            barCSS = {
                transform: 'translate3d(' + toBarPerc(n) + '%,0,0)'
            };
        } else if (Settings.positionUsing === 'translate') {
            barCSS = {
                transform: 'translate(' + toBarPerc(n) + '%,0)'
            };
        } else {
            barCSS = {
                'margin-left': toBarPerc(n) + '%'
            };
        }

        barCSS.transition = 'all ' + speed + 'ms ' + ease;

        return barCSS;
    }

    return NProgress;
});

If you want some spinner looking thing, [ic]showSpinner: false,[/ic] change it to true.


- CSS
Code:
[panda=css]/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #c0392b;

  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #c0392b, 0 0 5px #c0392b;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 100;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #c0392b;
  border-left-color: #c0392b;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

@-webkit-keyframes nprogress-spinner {
  0%  { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%  { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


- HTML
On your [ic]overall_header[/ic], add this somewhere before [ic]</head>[/ic]
Code:
[panda=html]<script type="text/javascript">
NProgress.start();
NProgress.done();
</script>




© PunBB Design


[Javascript] Youtube-like loading bar Act_bottom If you have any questions related to this topic create a topic with the following title:
Youtube-like loading bar

Powered by PunBB
Currently 0 users have thanked nanako for this post:

2
Offline

  Shadow

Shadow
Administrator
Administrator
[sucesso="Tutorial Accepted"] Your tutorial has been reviewed and we decide to accept it. Thanks for sharing with punbb.biz community.

Points added to the user.[/sucesso]

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

3
Offline

  Michael_vx

Michael_vx
Punbb Junior
Punbb Junior
thanks for this tuto its really cool
and i swonder if i can add it to buttom instead of top
thanks so much

Powered by PunBB
Currently 0 users have thanked Michael_vx for this post:

4
Offline

  sivastar

sivastar
Punbb Rookie
Punbb Rookie
http://github.hubspot.com/pace/docs/welcome/

Here can get more page load scripts!

Powered by PunBB
Currently 0 users have thanked sivastar for this post:

5
Offline

  Destroya*

Destroya*
Punbb Senior
Punbb Senior
It is not working for me. Can someone help me? I did exactly what you say..

Powered by PunBB
Currently 0 users have thanked Destroya* for this post:

6
Offline

  Andyman9491

Andyman9491
Punbb Rookie
Punbb Rookie
I like the concept but I'm not sure on the applicability. And is there a way we could see what it looks like? Smile

Powered by PunBB
Currently 0 users have thanked Andyman9491 for this post:

7
Offline

  aEEk.#

aEEk.#
Punbb Rookie
Punbb Rookie
Print?

Powered by PunBB
Currently 0 users have thanked aEEk.# for this post:

8
Offline

  cata90

cata90
Punbb Rookie
Punbb Rookie
good job, tahnks for share!

Powered by PunBB
Currently 0 users have thanked cata90 for this post:

9
Offline

  Bossanova

Bossanova
Punbb Rookie
Punbb Rookie
Thanks for sharing! Youtube loading bar is actually pretty nice.

Powered by PunBB
Currently 0 users have thanked Bossanova for this post:

10
Offline

  sapett

sapett
Newbie
Newbie
This is a great tutorial. I can't wait to try this for myself. I have always wanted to be able to implement a YouTube like userbar. Thank you for sharing!

Powered by PunBB
Currently 0 users have thanked sapett for this post:

11
Offline

  naruto101

naruto101
Punbb Rookie
Punbb Rookie
gooood

Powered by PunBB
Currently 0 users have thanked naruto101 for this post:

12
Offline

  Andrei34

Andrei34
Punbb Rookie
Punbb Rookie
It is not working on punBB.scratch

Powered by PunBB
Currently 0 users have thanked Andrei34 for this post:

13
Offline

  Sponsored content



Powered by PunBB
Currently 0 users have thanked Sponsored content for this post:

View previous topic View next topic Back to top Message [Page 1 of 1]


Topic URL's

URL
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum