This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function(){ | |
| var submitBtn = $('#submit'); | |
| var platfromDropDownBtn = $('#platform a'); | |
| var epicNickName = $('#epicNickName'); | |
| var results = $('#results'); | |
| // default values | |
| var dropDownValue = 'pc'; | |
| submitBtn.click(function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .content-body{ | |
| max-width:75%; | |
| margin:auto; | |
| } | |
| .main-img-banner{ | |
| padding:70px 0px 8px 0px; | |
| } | |
| .art-flex{ | |
| display:flex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*$(document).ready(function(){ | |
| $('#contToSite').trigger('click'); | |
| }, 5000);*/ | |
| let bgs = ['url("https://imgur.com/yLQP8cw.jpg") no-repeat center', 'url("https://imgur.com/JB1mxE7.jpg") no-repeat center', 'url("https://imgur.com/Pw9x0Cc.jpg") no-repeat center', 'url("https://imgur.com/Zl8jsTb.jpg") no-repeat center', 'url("https://imgur.com/9s69b52.jpg") no-repeat center', 'url("https://imgur.com/ffKXRld.jpg") no-repeat center', 'url("https://imgur.com/rnHeUgl.jpg") no-repeat center', 'url("https://imgur.com/q83YQWU.jpg") no-repeat center', 'url("https://imgur.com/GCL0QbR.jpg") no-repeat center', 'url("https://imgur.com/tn6fNl4.jpg") no-repeat center', 'url("https://imgur.com/raWPXtD.jpg") no-repeat center']; | |
| const bgmode = () => { | |
| let bgcolor = bgs[Math.floor(Math.random()*bgs.length)]; | |
| document.getElementById("chatBgColor").style.background = bgcolor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function(){ | |
| $("#iiwHS").click(function(){ | |
| $("#iiwContent").toggle(500); | |
| }); | |
| }); | |
| $(document).ready(function(){ | |
| $("#altsHS").click(function(){ | |
| $("#altsContent").toggle(500); | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let userEmail = "#"; | |
| const sendEmail = () => { | |
| if(document.getElementById("emailInput").value === ""){ | |
| //pops an alert saying some sassy shit | |
| alert("Please enter a valid email address."); | |
| } |