Thursday, September 19, 2013

Tutorial Creative Loading Effects

Do you want to share?

Do you like this story?

DEMO      -       DOWNLOAD
Some ideas and inspiration for loading effects on a website.
we’d like to show you some ideas for creative loading effects. Nowadays, many different page loading animations are used in websites; just think of the subtle red loading bar seen on YouTube. When loading something on a page, be it images or the next content, we don’t have to be restricted to a tiny loading indicator but we can get creative and big. So the idea is to indicate that something is happening in a stylish way without creating too much distraction for the user. There might be actions where this might not be adequate, but in some situations it might be quite fitting and amplifying for the overall design. Please note that the examples only serve as inspiration, they are dummies and not meant for production. You’ll have to use the transitions or animation together with a custom JavaScript solution.
We mostly just use one division and an example for an effect is the following one where we expand a slit to fill all the page from the center:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.la-anim-7 {
    position: fixed;
    top: 50%;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 0;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
}
.la-anim-7.la-animate {
    z-index: 100;
    width: 100%;
    opacity: 0;
    transition: width 5s ease-in, opacity 1s 5s;
}
Some browsers don’t support transitions or animations on pseudo-elements, so some of the effects in the demo won’t be animating. The examples also won’t work in browsers that don’t support CSS 3D transforms (e.g. in IE9 and below).

The SVG pie timer was made by Anders Grimsrud. The loading circle in the corner indicator example is by Metty.
by Mary Lou (Manoela Ilic)
source: http://tympanus.net/codrops/2013/09/18/creative-loading-effects/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+tympanus+%28Codrops%29

YOU MIGHT ALSO LIKE

0 komentar:

Post a Comment

Advertisements

Advertisements