-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 992 Bytes
/
index.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
<html>
<head>
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery.illuminate.0.7.min.js"></script>
<style type=text/css>
#button{
background:#98cb00;
width:auto;
display:inline-table;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
color:#ffffff;
font-size:18px;
font-family: Helvetica, Arial;
padding:10px;
margin-left:50px;
margin-top:50px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#button').illuminate({
'intensity': '0.5',
'color': '#ffcb00'
});
});
</script>
</head>
<body style="background:#232323;">
<div id="button">click me!</div>
</body>
</html>