-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJesseUIOrderProcesser.html
More file actions
42 lines (32 loc) · 1008 Bytes
/
JesseUIOrderProcesser.html
File metadata and controls
42 lines (32 loc) · 1008 Bytes
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
<script src="jesseUI.js"></script>
<style>
div{
color:white;
font-family:calibri;
font-weight:200;
font-size:300%;
-moz-border-radius: 5px; /* Gecko browsers */
-webkit-border-radius: 5px; /* Webkit browsers */
border-radius:5px; /* W3C syntax */
overflow:hidden;
padding:5px;
-moz-box-shadow:4px 4px 12px 4px rgba(20%,20%,40%,0.5);
-webkit-box-shadow:4px 4px 12px 4px rgba(20%,20%,40%,0.5);
box-shadow:4px 4px 12px
4px
rgba(20%,20%,40%,0.5);
}
</style>
<div style="position:absolute; top:20px; left:20px; background-color:blue; visibility:hidden">
I
</div>
<div style="position:absolute; top:100px; left:20px; background-color:red;visibility:hidden">
AM
</div>
<div style="position:absolute;color:gray; top:180px; left:20px; background-color:yellow;visibility:hidden">
HERE
</div>
<script>
var divs = document.getElementsByTagName("div");
JesseUI.util.orderProcess(divs, JesseUI.widget.rotateFadeInDisplay, 2, [360,50,150]);
</script>