-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smoothup - A modal that works</title>
<link rel="stylesheet" href="dist/smoothup.css">
<link rel="stylesheet" href="dist/smoothup-default-theme.css">
</head>
<body>
<div class="smoothup" data-smoothup-id="modal">
<button data-smoothup-action="close" class="smoothup-close"></button>
<h1>Smoothup</h1>
<p>
Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with
declarative configuration and hash tracking.
</p>
<br>
<button data-smoothup-action="cancel" class="smoothup-cancel">Cancel</button>
<button data-smoothup-action="confirm" class="smoothup-confirm">OK</button>
</div>
<a href="#modal">Call the modal with data-smoothup-id="modal"</a>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="dist/smoothup.js"></script>
</html>