Skip to content

Commit

Permalink
V2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
1pone committed Mar 11, 2021
1 parent 014ee56 commit 5cfa105
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 708 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
| 一言 + 时钟 + 天气 | `/index` | `/dark` | `/auto` |||
| 时钟 | `/clock` | `/clockDark` | `/clockAuto` |||
| 微博热搜+时钟+天气 | `/weibo` | `/weiboDark` | `/weiboAuto` |||
| 图片+时钟 | `/pic` | V2.0 | V2.0 |||
| 图片+时钟 | `/pic` | `/pic` | `/pic` |||
| 一言 + 时钟 | `/yiyan` | `/yiyanDark` | `/yiyanAuto` |`/offline/yiyan` ||
| ... | ... | ... | ... | ... | ... |

Expand Down
1 change: 1 addition & 0 deletions beta/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ li div {
float: right;
margin-right: 1.75rem;
font-size: 1.5rem;
font-family: 'DottedSongtiSquareRegular';
}

.tempNum {
Expand Down
2 changes: 1 addition & 1 deletion beta/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ function weather() {
}

var weaImg = '<span class="iconfont">' + img + '</span>' + '<div>天气:' + weather_data.weather + '</div>';
var weaTemp = '<div class="tempNum">' + weather_data.temp + '<div class="symbol">&#8451;</div></div>' +
var weaTemp = '<div class="tempNum">' + weather_data.temp + '</div><div class="symbol">&#8451;</div>' +
'<div>当前气温</div>';
var highTemp = weather_data.max_temp // 日间气温/最高气温
var lowTemp = weather_data.min_temp // 夜间气温/最低气温
Expand Down
329 changes: 1 addition & 328 deletions css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- 查询客户端ip用于天气查询 -->
<script src="https://pv.sohu.com/cityjson"></script>
<script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>
<script src="js/cookie.js"></script>
<script src="js/main.js"></script>
</head>
Expand All @@ -28,6 +29,10 @@
</div>
<div id="from"></div>
</div>
<div class="poem_container">
<div id="poem_sentence"></div>
<div id="poem_info"></div>
</div>
<div class="weibo_container">
<div class="weibo_title">微博热搜加载中...</div>
<div class="hot_list">
Expand All @@ -45,7 +50,7 @@
</div>
</div>
<div class="time" id="time"></div>
<div class="date" id="date"></div>
<div class="date" id="date">时钟加载中...</div>
</div>
</div>

Expand Down
Loading

0 comments on commit 5cfa105

Please sign in to comment.