This website works better with JavaScript.
首頁
探索
說明
登入
chemicalcrux
/
stroll
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
11
Wiki
Activity
瀏覽代碼
Log items fade out over time
tags/v1.1.0
Fen Dweller
5 年之前
父節點
41ec1b0f74
當前提交
e7ff051607
共有
2 個文件被更改
,包括
21 次插入
和
1 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
stroll.html
+18
-0
style.css
+ 3
- 1
stroll.html
查看文件
@@ -192,7 +192,9 @@
<div id="log-area">
<div class="log" id="log">
<div>Welcome to Stroll</div>
<p class="version"></p>
<br>
<div class="version"></div>
<br>
<div><b>This game features 18+ content</b></div>
<div> </div>
</div>
+ 18
- 0
style.css
查看文件
@@ -802,4 +802,22 @@ body.dark .meterLabel {
padding-top: 6px;
padding-bottom: 6px;
user-select: none;
}
#log > div,
#react-log > div {
animation: log-fade 10s linear;
animation-fill-mode: forwards;
}
@keyframes log-fade {
0% {
opacity: 1;
}
70% {
opacity: 1;
}
100% {
opacity: 0.6;
}
}
Write
Preview
Loading…
取消
儲存