added background image to last iframe

Co-authored-by: Julian; <JDobeshow@users.noreply.github.com>
This commit is contained in:
MrLetsplay 2022-04-19 20:35:15 +02:00
parent 547368b1be
commit 77b43a9b92
2 changed files with 10 additions and 5 deletions

BIN
img/wtf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -74,6 +74,10 @@
animation: blink 1s infinite linear;
}
iframe {
background: url("https://nsfw.cringe-studios.com/wtf.png"), linear-gradient(rgb(255,0,0), rgb(0,255,0));
}
@keyframes blink {
50% {
background-color:yellow;
@ -202,7 +206,6 @@
<ul style="list-style-type:lower-greek;">
<li>Favorite Song: Coconut Mall</li>
<li>Favorite Operating System: Lin<img src="https://nsfw.cringe-studios.com/sus.png" style="display:inline; vertical-align: middle;" height="20" alt="sus" title="sus" /></li>
<li>Likes to touch his &#x1F956;</li>
<li>Favorite Video Game: Amogus</li>
<li>Favorite Discord Bot: <a href="https://graphite-official.com" target="_blank">Graphite</a></li>
</ul>
@ -298,7 +301,7 @@
</div>
</div>
<iframe id="cringe-frame" src="https://cringe-studios.com/?poop" style="width:100%; height:800px; border:0px"></iframe>
<iframe id="cringe-frame" title="Recursion" src="https://cringe-studios.com/?poop" style="width:100%; height:800px; border:0px"></iframe>
<h6><b class="blinking" style="background-color:red; color:yellow">This site has been visited <?php include("visitor_counter.php"); echo IncrementCounter(); ?> times</b></h6>
<footer>
@ -308,8 +311,10 @@
<script>
let search = window.location.search;
let q = search != "" ? parseInt(search.substring(1)) : 0;
if(q <= 20) {
let frame = document.getElementById("cringe-frame");
frame.src = "https://cringe-studios.com/?" + (q + 1);
frame.src = "https://cringe-studios.com/?" + (q + 1) + "#cringe-frame";
}
</script>
</body>
</html>