-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsun.html
More file actions
34 lines (26 loc) · 830 Bytes
/
sun.html
File metadata and controls
34 lines (26 loc) · 830 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
<!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=iso-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sun</title>
<script src="src/picoCSS.min.js" type="text/javascript"></script>
<script type="text/javascript">
function load(){
p.select("div").animate('4', '1.5','1','1','1','800','1', '0','0');
}
window.addEventListener('load',load,false);
</script>
<style>
#sun{
background-color:transparent;
width: 500px;
height:500px;
background-image: -webkit-gradient(radial, 118 118, 80, 118 118, 40, from(#FCFCFC), to(#CF0C13));
}
</style>
</head>
<body>
<div id="sun"></div>
</body>
</html>