-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotify.html
44 lines (35 loc) · 2 KB
/
notify.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"/>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- lama CSS -->
<link rel="stylesheet" type="text/css" href="./css/lama.css" />
<!-- Font-Family CSS -->
<link rel='stylesheet' type='text/css' href='./css/font-family.css' />
<title>Notify - Build with lama.js</title>
</head>
<body>
<ul id="lama-menu">
<li class="lama-item"><a href="index.html">Home</a></li>
<li class="lama-item"><a href="image.html">Images</a></li>
<li class="lama-item"><a href="listing.html">Shopping</a></li>
<li class="lama-item"><a href="notify.html">Notifications</a></li>
<li class="lama-item"><a href="contact.html">Contact</a></li>
<li class="lama-item"><a href="about.html">About</a></li>
</ul>
<div id="container">
<p class="button" onclick="createCustomAlert('Tadaaa... LAMA.JS Custom Alert Panel');">Show popup</p>
<p class="button" onclick="lamanotify('Tadaa... Welcome to LAMA.JS Notifications.','success');">Notification</p>
<button type="button" class="collapsible">Collapse Content</button><div class="Content" style="display: none;"><p>You can hide your text here. When user click this button, they will see this text.</p></div>
</div>
<script src="./js/lama.js" type="text/javascript"></script>
<script src="./js/index.js" type="text/javascript"></script>
<script src="./js/alerts_.js" type="text/javascript"></script>
</body>
</html>