lacendi / toastr8

Windows 8 toast notifications for web or javascript apps

Home Page:http://saribe.github.io/toastr8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

toastr8

toastr8 is a jQuery notification plugin for creating Windows 8 metro inspired toast messages that use Font Awesome for notification icons.

Current Version

1.0.3

Demo

Wiki and Change Log

Wiki including Change Log

###3 Easy Steps For other API calls, see the demo.

  1. Link to toastr8.css <link href="http://rawgit.com/saribe/toastr8/master/dist/css/toastr8.min.css" rel="stylesheet"/>

  2. Link to toastr8.js <script src="http://rawgit.com/saribe/toastr8/master/dist/js/toastr8.min.js"></script>

  3. use toastr8 to display a toast notifcation

     // Display an info notification with no title
     toastr8.info('This is your dog birthday!');
    

Display an info notification with no title

	// Display an info notification with title
	toastr8.info('This is your dog birthday!', "Remember");

Display an info notification with no title

	// Alternative display an info notification with title and custom icon
	toastr8.info({
		message:'This is your dog birthday!', 
		title:"Remember",
		iconClass: "fa fa-calendar"
	});

Display an info notification with no title

	// Alternative display an info notification with title and custom icon and image from css class
	toastr8.info({
		message:'This is your dog birthday!', 
		title:"Remember",
		iconClass: "fa fa-calendar",
		imgClass: "dog-foto-img"
	});

Display an info notification with no title

	// Alternative display an info notification with title and custom icon and image from url
	toastr8.info({
		message:'This is your dog birthday!', 
		title:"Remember",
		iconClass: "fa fa-calendar",
		imgURI: ["http://domain/images/failoverDogFoto.jpg" "http://domain/images/niceFoto.png" ]
	});

Display an info notification with no title

Other Options

// able toasts
var toasts = ["info", "error", "warning", "success", "facebook", "twitter", "skype", "android", "linkedIn", "windows", "googlePlus", "gitHub"];

for(var i = 0, k = toasts.length; i < k; i++){

	toastr8[toasts[ i ] ]("message", "title");
}

Display an info notification with no title

// Clears the current list of toasts
toastr8.clear()

Display Sequence

Show newest toast at bottom (top is default)

toastr8.options.newestOnTop = false;

Callbacks

// Define a callback for when the toast is shown/hidden
toastr8.options.onShown = function() { console.log('hello'); }
toastr8.options.onHidden = function() { console.log('goodbye'); }

Authors

**Samuel Ribeiro **

Credits

Inspired by https://github.com/CodeSeven/toastr.

Copyright

Copyright © 2013 Samuel Ribeiro

License

toastr8 is under MIT license - http://www.opensource.org/licenses/mit-license.php

About

Windows 8 toast notifications for web or javascript apps

http://saribe.github.io/toastr8


Languages

Language:JavaScript 62.5%Language:CSS 37.5%