-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-3.html
58 lines (47 loc) · 1.65 KB
/
index-3.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Creative Add/Remove Effects for List Items with CSS3 Animations</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/styles-3.css" />
</head>
<body>
<header class="page-header">
<a href="http://sarasoueidan.com/blog/ui-transitions-creative-add-remove-effects-for-list-items/" class="tutorial-link">Read Tutorial</a>
<nav class="demo-nav">
<ul>
<li><a href="index.html">Demo 1</a></li>
<li><a href="index-2.html">Demo 2</a></li>
<li><a href="index-3.html" class="active">Demo 3</a></li>
<li><a href="index-4.html">Demo 4</a></li>
<li><a href="index-5.html">Demo 5</a></li>
<li><a href="index-6.html">Demo 6</a></li>
</ul>
</nav>
</header>
<div class="demo-wrapper">
<header>
<h1>Creative Add/Remove Effects for List Items</h1>
</header>
<div class="notification undo-button">Item Deleted. Undo?</div>
<div class="notification save-notification">Item Saved</div>
<div class="reminder-container">
<form id="input-form">
<input type="text" id="text" placeholder="Remind me to.."/>
<input type="submit" value="Add" />
</form>
<ul class="reminders">
</ul>
<footer>
<span class="count"></span>
<button class="clear-all">Delete All</button>
</footer>
</div>
</div><!--end demo-wrapper-->
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/modernizr-1.5.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>