使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
chemicalcrux
/
stroll
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
11
百科
动态
浏览代码
Log items fade out over time
tags/v1.1.0
Fen Dweller
5 年前
父节点
41ec1b0f74
当前提交
e7ff051607
共有
2 个文件被更改
,包括
21 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+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;
}
}
撰写
预览
正在加载...
取消
保存