-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
28 lines (23 loc) · 898 Bytes
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Example code for jquery.wait plugin</title>
<style type="text/css">
body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; }
#message { border: 1px solid #CCC; padding: 40px; width: 200px; height: 100px; position: absolute; top: 100px; left: 100px; }
</style>
</head>
<body>
<div id="message">
<h1>Hello</h1>
<p>World!</p>
</div>
<script type="text/javascript" src="lib/jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery.wait.js"></script>
<script type="text/javascript">
var message = $("#message");
message.hide().fadeIn().wait(3000).fadeOut("slow");
</script>
</body>
</html>