-
Notifications
You must be signed in to change notification settings - Fork 122
/
other-boxspinner.html
113 lines (109 loc) · 4.27 KB
/
other-boxspinner.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Notification Styles Inspiration | Other Box Spinner</title>
<meta name="description" content="Various styles and effects for unobtrusive notifications on a website" />
<meta name="keywords" content="notification, inspiration, style, effect, growl, javascript" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/ns-default.css" />
<link rel="stylesheet" type="text/css" href="css/ns-style-other.css" />
<script src="js/modernizr.custom.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="color-9">
<div class="container">
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/SelectInspiration/"><span>Previous Demo</span></a>
<a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=19415"><span>Back to the Codrops Article</span></a>
</div>
<header class="codrops-header">
<h1>Notification Styles Inspiration <span>Simple ideas & effects for website notifications</span></h1>
</header>
<div class="main clearfix">
<div class="column">
<p class="small">Click on the button to show the notification:</p>
<button id="notification-trigger" class="progress-button">
<span class="content">Show Notification</span>
<span class="progress"></span>
</button>
</div>
<div class="column">
<nav class="codrops-demos">
<h3>Growl-like</h3>
<div>
<a href="index.html">Scale</a>
<a href="growl-jelly.html">Jelly</a>
<a href="growl-slide.html">Slide in</a>
<a href="growl-genie.html">Genie</a>
</div>
<h3>Attached</h3>
<div>
<a href="attached-flip.html">Flip</a>
<a href="attached-bouncyflip.html">Bouncy Flip</a>
</div>
<h3>Top Bar</h3>
<div>
<a href="bar-slidetop.html">Slide On Top</a>
<a href="bar-exploader.html">Expanding Loader</a>
</div>
<h3>Other</h3>
<div>
<a href="other-cornerexpand.html">Corner Expand</a>
<a href="other-loadingcircle.html">Loading Circle</a>
<a class="current-demo" href="other-boxspinner.html">Box Spinner</a>
<a href="other-thumbslider.html">Thumb Slider</a>
</div>
</nav>
</div>
</div>
<!-- Related demos -->
<section class="related">
<p>If you enjoyed this demo you might also like:</p>
<a href="http://tympanus.net/Development/ProgressButtonStyles/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/12/ProgressButtonStyles-300x162.png" />
<h3>Progress Button Styles</h3>
</a>
<a href="http://tympanus.net/Development/CreativeLoadingEffects/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/09/CreativeLoadingEffects-300x162.png" />
<h3>Creative Loading Effects</h3>
</a>
</section>
</div><!-- /container -->
<script src="js/classie.js"></script>
<script src="js/notificationFx.js"></script>
<script>
(function() {
var bttn = document.getElementById( 'notification-trigger' );
// make sure..
bttn.disabled = false;
bttn.addEventListener( 'click', function() {
// create the notification
var notification = new NotificationFx({
message : '<p>I am using a beautiful spinner from <a href="http://tobiasahlin.com/spinkit/">SpinKit</a></p>',
layout : 'other',
effect : 'boxspinner',
ttl : 9000,
type : 'notice', // notice, warning or error
onClose : function() {
bttn.disabled = false;
}
});
// show the notification
notification.show();
// disable the button (for demo purposes only)
this.disabled = true;
} );
})();
</script>
</body>
</html>