This commit is contained in:
季圣华 2016-10-30 16:45:33 +08:00
parent c9e03495f4
commit b796dce5cc
146 changed files with 4589 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jDigiClock - Digital Clock (HTC Hero inspired).</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="wrap">
<h1>jDigiClock</h1>
<h2>Digital Clock (HTC Hero inspired)</h2>
<h3>Changelog</h3>
<h4>Version 2.1.0 - 2010-02-24</h4>
<ul>
<li>Fixed bug with configuration option <code>weatherImagesPath</code> reported by <a href="http://www.emessage.it" target="_blank">Alessandro Benedetti</a></li>
<li>Animation method rewriting</li>
<li>New configuration option <code>proxyType</code></li>
<li>Added .NET proxy. Thanks to <a href="http://www.emessage.it" target="_blank">Alessandro Benedetti</a></li>
</ul>
<h4>Version 2.0.0 - 2009-12-06</h4>
<ul>
<li>Add 5-day forecast panel.</li>
</ul>
<h4>Version 1.0.0 - 2009-11-28</h4>
<ul>
<li>Initial release.</li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,227 @@
#plugin_container {
width:500px;
height:420px;
position:relative;
background:url(../images/htc_hero_wallpaper_02.jpg);
overflow:hidden;
font-family:Arial, Verdana, Tahoma, Helvetica, sans-serif;
color:#fff;
}
#plugin_container p {
margin:0;
padding:0;
}
#left_arrow, #right_arrow {
position:absolute;
top:200px;
z-index:200;
cursor:pointer;
}
#left_arrow {
left:5px;
}
#right_arrow {
right:5px;
}
#digital_container {
width:500px;
height:360px;
background:url(../images/background.png) 50% 40px no-repeat;
position:absolute;
top:40px;
left:0;
z-index:98;
}
#clock {
float:left;
margin-left:48px;
}
#hours, #minutes {
width:200px;
height:200px;
float:left;
position:relative;
}
#minutes {
margin-left:4px;
}
#hours_bg, #minutes_bg {
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
z-index:99;
}
.first_digit {
width:80px;
height:100%;
position:absolute;
top:0;
left:20px;
z-index:100;
}
.second_digit {
width:80px;
height:100%;
position:absolute;
top:0;
left:100px;
z-index:100;
}
.line {
width:175px;
height:2px;
background:#efefef;
position:absolute;
top:97px;
left:12px;
z-index:101;
font-size:1px;
}
#am_pm {
position:absolute;
top:156px;
left:130px;
z-index:110;
}
#weather {
width:100%;
height:206px;
position:absolute;
top:140px;
left:0;
z-index:105;
color:#fff;
}
#weather #local, #weather .loading {
float:left;
margin:65px 0 0 45px;
}
.city {
font-weight:bold;
font-size:12pt;
}
.temp {
font-size:30pt;
padding:0;
}
.temp .metric {
margin-left:-3px;
}
#weather #temp {
float:right;
margin:65px 45px 0 0;
text-align:right;
}
#weather #date {
font-size:11pt;
padding-right:2px;
}
#forecast_container {
width:500px;
height:400px;
background:url(../images/background_forecast.png) 50% 100% no-repeat;
position:absolute;
top:0;
left:500px;
z-index:98;
}
#forecast_container #current {
width:400px;
height:240px;
margin-left:50px;
position:relative;
}
#forecast_container .loading {
margin:130px 0 0 70px;
}
#forecast_container #current .temp, #forecast_container #current .high_low {
width:116px;
text-align:center;
}
#forecast_container #current .temp {
font-size:32pt;
margin-top:110px;
float:left
}
#forecast_container #current .high_low {
font-size:12pt;
clear:both;
}
#forecast_container #current .city, #forecast_container #current .text {
width:100%;
text-align:center;
}
#forecast_container #current .text {
margin-top:6px;
}
#forecast_container #forecast {
width:400px;
height:122px;
list-style:none;
margin:0 0 0 50px;
padding:0;
}
#forecast_container #forecast li {
width:25%;
height:100%;
float:left;
text-align:center;
}
#forecast_container #forecast li p {
width:100%;
height:30px;
margin:0;
padding:0;
font-size:11pt;
line-height:30px;
}
#forecast_container #forecast li img {
width:96px;
}
#forecast_container #update {
text-align:center;
margin-top:10px;
font-size:11px;
}
#forecast_container #update img {
margin:-2px 4px 0 0;
vertical-align:middle;
cursor:pointer;
}

View File

@ -0,0 +1,101 @@
html, body {
min-height: 100%;
height: auto !important;
height: 100%;
}
body {
font: 100.01% "Trebuchet MS", Trebuchet, Tahoma, Verdana, Arial, sans-serif;
color: #333;
padding: 0;
}
body * {
line-height:1.22em;
}
h1, h2, h3, h4, h5, h6 {
font-family: Georgia, "Times New Roman", Times, serif;
color:#4088b8;
clear: both;
}
h1 {
}
h2 {
color: #c8c8c8;
margin-top: -25px;
}
h3 {
}
h4 {
color: #333;
margin-bottom: -10px;
}
p {
}
ul, ol {
margin-left: 0;
}
ul ul {
margin-bottom: 20px;
}
#wrap {
color: #404040;
margin: 20px 40px;
}
a {
color: #4088b8;
}
table {
font-size: inherit;
border: 1px solid #c8c8c8;
}
th {
background: #d8d8d8;
text-align: left;
padding: 5px;
white-space: nowrap;
}
td {
background: #f8f8f8;
text-align: left;
padding: 5px;
vertical-align: top;
}
select, input, textarea {
font: 80% "Trebuchet MS", Trebuchet, Tahoma, Verdana, Arial, sans-serif;
}
pre, code, tt, dt {
font: 100% monospace;
margin: 20px 0;
}
pre, blockquote {
padding: 15px;
background-color: #f0f0f0;
margin: 20px 0;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
td pre {
font: 85% monospace;
padding: 5px;
margin: 5px 0;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Some files were not shown because too many files have changed in this diff Show More