added social media info

This commit is contained in:
gocivici 2022-10-09 18:14:30 +03:00
parent 5adfd08f6c
commit 0db3322ddc
7 changed files with 49 additions and 19 deletions

BIN
images/Scream/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 KiB

BIN
images/Scream/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 KiB

BIN
images/Scream/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

BIN
images/Scream/poster.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -74,6 +74,13 @@
</div> </div>
</div> </div>
<div class="content">
<i class="fas fa-calendar-day"></i>
<div class="InstructionText">
<p>Horrordle will only run through Spooktober! make sure to check everyday until November.</p>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -156,9 +163,10 @@
<h2>Support</h2> <h2>Support</h2>
<a class="close" href="#">&times;</a> <a class="close" href="#">&times;</a>
<p>Horrordle is a game for horror fans, inspired by <a href="https://framed.wtf/">Framed</a>, <a href="https://archiguesser.com/">Archiguesser</a>, <a href="https://medium.com/floodgates/the-complete-and-authoritative-list-of-wordle-spinoffs-fb00bfafc448">and all the other spinoffs.</a> </p> <p>Horrordle is a game for horror fans, inspired by <a href="https://framed.wtf/">Framed</a>, <a href="https://archiguesser.com/">Archiguesser</a>, <a href="https://medium.com/floodgates/the-complete-and-authoritative-list-of-wordle-spinoffs-fb00bfafc448">and all the other spinoffs.</a> </p>
<p>Each day a new horror movie is picked from a <a href="https://letterboxd.com/ashby/list/horrordle-october-2022/">curated list</a>. </p> <!-- <p>Each day a new horror movie is picked from a <a href="https://letterboxd.com/ashby/list/horrordle-october-2022/">curated list</a>. </p> -->
<p>This project is open-source and nowhere near complete. You can access and contribute by visiting the <a href="https://github.com/gocivici/horrordle">GitHub page.</a></p> <p>This project is open-source and nowhere near complete. You can access and contribute by visiting the <a href="https://github.com/gocivici/horrordle">GitHub page.</a></p>
<p> If you have any suggestions or want to give feedback, you can also contact me on <a href="https://twitter.com/horrordle">twitter</a></p> <p>If you have any suggestions or want to give feedback, you can also contact me on <a href="https://twitter.com/horrordle">twitter</a></p>
<p>Designed with ❤️ by <a href="https://gorkem.cc">Görkem</a></p>
</div> </div>
</div> </div>
</div> </div>
@ -217,6 +225,7 @@
<div class="result"> <div class="result">
<div id="resultText"></div> <div id="resultText"></div>
<input onclick="copyToClipboard()" type="button" id="shareResult" value="Share Result"> <input onclick="copyToClipboard()" type="button" id="shareResult" value="Share Result">
</div> </div>
</div> </div>
</div> </div>
@ -249,29 +258,32 @@
</form> </form>
<p id="feedback"></p> <p id="feedback"></p>
<h2 id="countDown"></h2> <h2 id="countDown">00h 00m 00s</h2>
<div id="footer">
<p>horrordle? Follow me on <a href="https://twitter.com/horrordle">twitter!</a></p>
<!-- <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a><br /> -->
</div>
<!-- <div class="result"> <!-- <div class="result">
<div id="resultText"></div> <div id="resultText"></div>
<input onclick="copyToClipboard()" type="button" id="shareResult" value="Share Result"> <input onclick="copyToClipboard()" type="button" id="shareResult" value="Share Result">
</div> --> </div> -->
<div class="bottomContainer"> <div class="bottomContainer">
<div id="firstGuess"></div> <div id="firstGuess"></div>
<div id="secondGuess"></div> <div id="secondGuess"></div>
<div id="thirdGuess"></div> <div id="thirdGuess"></div>
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.7/dist/autoComplete.min.js"></script>
<script src="main.js"></script>
<!-- <footer class="footer">
<p>Designed with ❤️ by <a href="https://ko-fi.com/Gorkem">Görkem</a></p>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a><br />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.7/dist/autoComplete.min.js"></script>
</footer> --> <script src="main.js?2"></script>
</body> </body>

View File

@ -46,6 +46,7 @@ function revealButtons(g = guessNo){
} }
// document.getElementById("button2").style.display = "none" // document.getElementById("button2").style.display = "none"
// document.getElementById("button3").style.display = "none" // document.getElementById("button3").style.display = "none"
// document.getElementById("footer").style.display = "block"
@ -62,7 +63,7 @@ var movies = [
["Hellraiser", 2, "Kirsty Cotton"], ["Hellraiser", 2, "Kirsty Cotton"],
["Final Destination", 2, "Alex Browning"], ["Final Destination", 2, "Alex Browning"],
["Annihilation", 2, "Lena"], ["Annihilation", 2, "Lena"],
["Scream"], ["Scream",0,"Dewey Riley"],
["28 Days Later"], ["28 Days Later"],
["Fear Street"], ["Fear Street"],
["Escape Room"], ["Escape Room"],
@ -1151,7 +1152,8 @@ function clearGuess() {
document.getElementById("secondGuess").style.display = "none"; document.getElementById("secondGuess").style.display = "none";
document.getElementById("shareResult").style.display = "none"; document.getElementById("shareResult").style.display = "none";
document.getElementById("guessForm").style.display = "block"; document.getElementById("guessForm").style.display = "block";
document.getElementById("countDown").style.display = "none" document.getElementById("countDown").style.display = "none";
document.getElementById("footer").style.display = "none";
} }
@ -1176,7 +1178,7 @@ streakNumber.textContent =localStorage.getItem('streak');
if(localStorage.getItem('result')) {localStorage.setItem('result', textResult);} if(localStorage.getItem('result')) {localStorage.setItem('result', textResult);}
if(localStorage.getItem('firstGuess')){firstGuess.textContent = "❌ " + localStorage.getItem('firstGuess');document.getElementById("firstGuess").style.display = "block";} if(localStorage.getItem('firstGuess')){firstGuess.textContent = "❌ " + localStorage.getItem('firstGuess');document.getElementById("firstGuess").style.display = "block";}
if(localStorage.getItem('secondGuess')){secondGuess.textContent = "❌ " + localStorage.getItem('secondGuess');document.getElementById("secondGuess").style.display = "block";} if(localStorage.getItem('secondGuess')){secondGuess.textContent = "❌ " + localStorage.getItem('secondGuess');document.getElementById("secondGuess").style.display = "block";}
if(localStorage.getItem('winningGuess')||localStorage.getItem('lost')){document.getElementById("resultText").innerHTML =textResult;document.getElementById("movieFrame").style.display = "none";document.getElementsByClassName("resultContainer")[0].style.display="flex";document.getElementsByClassName("picButtons")[0].style.display="none";revealButtons(2);document.getElementById("feedback").innerHTML = "Next movie at <b>midnight!</b> 🕛";document.getElementById("shareResult").style.display = "block";document.getElementById("countDown").style.display = "block";document.getElementById("guessForm").style.display = "none";document.getElementById("firstGuess").style.display = "none";document.getElementById("secondGuess").style.display = "none";document.getElementById("resultText").style.display="block";}else {document.getElementById("shareResult").style.display = "none";document.getElementById("guessForm").style.display = "block";document.getElementById("resultText").style.display="none";}; if(localStorage.getItem('winningGuess')||localStorage.getItem('lost')){document.getElementById("resultText").innerHTML =textResult;document.getElementById("movieFrame").style.display = "none";document.getElementsByClassName("resultContainer")[0].style.display="flex";document.getElementsByClassName("picButtons")[0].style.display="none";revealButtons(2);document.getElementById("feedback").innerHTML = "Next movie at <b>midnight!</b> 🕛";document.getElementById("shareResult").style.display = "block";document.getElementById("countDown").style.display = "block";document.getElementById("footer").style.display = "block";document.getElementById("guessForm").style.display = "none";document.getElementById("firstGuess").style.display = "none";document.getElementById("secondGuess").style.display = "none";document.getElementById("resultText").style.display="block";}else {document.getElementById("shareResult").style.display = "none";document.getElementById("guessForm").style.display = "block";document.getElementById("resultText").style.display="none";};
if(localStorage.getItem('lost')){ document.getElementById("congratz").innerHTML = "You lost☠"; document.getElementsByClassName("resultContainer")[0].style.borderColor = "#C62828";} if(localStorage.getItem('lost')){ document.getElementById("congratz").innerHTML = "You lost☠"; document.getElementsByClassName("resultContainer")[0].style.borderColor = "#C62828";}
secondGuess.textContent = "❌ " + localStorage.getItem('secondGuess'); secondGuess.textContent = "❌ " + localStorage.getItem('secondGuess');
revealButtons(); revealButtons();
@ -1255,6 +1257,7 @@ window.onload = deathOftheDay();
document.getElementById("resultText").innerHTML = textResult; document.getElementById("resultText").innerHTML = textResult;
document.getElementById("resultText").style.display="block"; document.getElementById("resultText").style.display="block";
document.getElementById("countDown").style.display = "block"; document.getElementById("countDown").style.display = "block";
document.getElementById("footer").style.display = "block";
document.getElementById("shareResult").style.display = "block"; document.getElementById("shareResult").style.display = "block";
document.getElementById("submitBonusGuess").style.display="none"; document.getElementById("submitBonusGuess").style.display="none";
document.getElementById("skipBonusGuess").style.display="none"; document.getElementById("skipBonusGuess").style.display="none";

View File

@ -254,6 +254,10 @@ align-items: center;
padding-right:13.75px !important; padding-right:13.75px !important;
padding-left:13.75px !important; padding-left:13.75px !important;
} }
.fa-calendar-day{
padding-right:17.25px !important;
padding-left:17.25px !important;
}
.content{ .content{
width: 100%; width: 100%;
position: relative; position: relative;
@ -345,19 +349,27 @@ h3 {
overflow: auto; overflow: auto;
} }
.footer{ #footer{
display:none;
font-family: 'Arial', sans-serif; font-family: 'Arial', sans-serif;
font-size: 12px; font-size: 12px;
position: relative; position: relative;
bottom: 10px; bottom: 0px;
left: 0; left: 0;
right: 0; right: 0;
top:0;
width: 100%; width: 100%;
text-align: center; text-align: center;
margin: auto; margin: auto;
color: #ECECEC; color: #9b9b9b;
/* position: absolute; */ /* position: absolute; */
} }
#footer a{
color:rgb(178, 0, 0);
}
#footer p{
/* margin-top: -15px; */
}
a { a {
color: red; color: red;
background-color: transparent; background-color: transparent;
@ -394,7 +406,7 @@ i{
} }
#shareResult{ #shareResult{
background-color: green; background-color: green;
margin-top: 40px; margin-top: 50px;
bottom: 5px; bottom: 5px;
display:none; display:none;
margin-left: auto; margin-left: auto;
@ -723,6 +735,9 @@ border-radius: 5px;
/* padding-left: 5px; /* padding-left: 5px;
padding-right: 5px; */ padding-right: 5px; */
} }
#shareResult{
margin-top: 20px;
}
/* i{ /* i{
padding-left: 5px !important; padding-left: 5px !important;
padding-right: 20px; padding-right: 20px;