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

@ -69,11 +69,15 @@
animation: amogus 10s infinite linear; animation: amogus 10s infinite linear;
max-width: 100%; max-width: 100%;
} }
.blinking { .blinking {
animation: blink 1s infinite linear; 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 { @keyframes blink {
50% { 50% {
background-color:yellow; background-color:yellow;
@ -202,7 +206,6 @@
<ul style="list-style-type:lower-greek;"> <ul style="list-style-type:lower-greek;">
<li>Favorite Song: Coconut Mall</li> <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>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 Video Game: Amogus</li>
<li>Favorite Discord Bot: <a href="https://graphite-official.com" target="_blank">Graphite</a></li> <li>Favorite Discord Bot: <a href="https://graphite-official.com" target="_blank">Graphite</a></li>
</ul> </ul>
@ -298,7 +301,7 @@
</div> </div>
</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> <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> <footer>
@ -308,8 +311,10 @@
<script> <script>
let search = window.location.search; let search = window.location.search;
let q = search != "" ? parseInt(search.substring(1)) : 0; let q = search != "" ? parseInt(search.substring(1)) : 0;
let frame = document.getElementById("cringe-frame"); if(q <= 20) {
frame.src = "https://cringe-studios.com/?" + (q + 1); let frame = document.getElementById("cringe-frame");
frame.src = "https://cringe-studios.com/?" + (q + 1) + "#cringe-frame";
}
</script> </script>
</body> </body>
</html> </html>