This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
stroll
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
11
Wiki
Activity
Browse Source
Log items fade out over time
tags/v1.1.0
Fen Dweller
5 years ago
parent
41ec1b0f74
commit
e7ff051607
2 changed files
with
21 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
stroll.html
+18
-0
style.css
+ 3
- 1
stroll.html
View File
@@ -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
View File
@@ -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…
Cancel
Save