-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathupdates.php
More file actions
39 lines (31 loc) · 1.43 KB
/
Copy pathupdates.php
File metadata and controls
39 lines (31 loc) · 1.43 KB
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
<head>
<link rel="stylesheet" type="text/css" href="assets/css/updates.css" media="screen"/>
<script type="text/javascript" src="assets/js/jquery2.min.js"></script>
<script type="text/javascript" src="assets/js/featurify.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#sample1").featurify({pause:3333});
$("#sample2").featurify({
directionIn : 1,
directionOut:1,
pause:3333
});
});
</script>
</head>
<body>
<div id="sample2" class="sample" >
<ul style="list-style-type:none; font-style:bold; font-size: 150%;">
<li>Update 1</li>
<li>Update 2</li>
<li>Update 3</li>
</ul>
</div>
<div id="sample1" class="sample">
<ul style="list-style-type:none;">
<li>Something Something Something Something Something Something Something Something </br> Something Something Something Something Something Something Something Something </br></li>
<li>Another thing Another thing Another thing Another thing Another thing Another thing Another thing Another thing </br> Another thing Another thing Another thing Another thing Another thing Another thing Another thing Another thing </br></li>
<li>Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing </br> Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing Ultimate thing </br></li>
</ul>
</div>
</body>