Files
jquery-notify/examples/metro.html
T

37 lines
1.1 KiB
HTML
Raw Normal View History

2014-01-17 13:15:09 -02:00
<html>
<body>
<head>
<link href="../dist/styles/metro/notify-metro.css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="../dist/notify.js"></script>
<script src="../dist/styles/metro/notify-metro.js"></script>
</head>
<h2>Index</h2>
<button onclick="notify('white')">White</button>
<button onclick="notify('black')">Black</button>
<button onclick="notify('error')">Err</button>
<button onclick="notify('success')">Success</button>
<button onclick="notify('warning')">Warning</button>
<button onclick="notify('info')">Info</button>
<div style="background-image:url('/Content/mail.png')"></div>
<script type="text/javascript">
function notify(style) {
$.notify({
title: 'Email Notification',
text: 'You received an e-mail from your boss. You should read it right now!',
image: "<img src='images/Mail.png'/>"
}, {
style: 'metro',
className: style,
autoHide: false,
clickToHide: true
});
}
</script>
</body>
</html>