forked from padolsey-archive/jquery.fn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
31 lines (27 loc) · 808 Bytes
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Pulse plugin for jQuery</title>
<style type="text/css">
#demo {
background-color: green;
height: 200px;
width: 200px;
}
</style>
</head>
<body>
<h1>Demo</h1>
<div id="demo"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="jquery.pulse.js"></script>
<script>
$('#demo').pulse({
opacity: [0,1]
}, {
times: 999999
});
</script>
</body>
</html>