It's in the game. Thanks lucas!

This commit is contained in:
Peter 2020-10-17 13:37:57 +08:00
parent 6b2dbb3ee6
commit ffb283e411
2 changed files with 46 additions and 1 deletions

46
ea/index.html Normal file
View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>EA Sports - It's in the game</title>
<meta name="description" content="EAntEAr any tEAxt and have it EAmphasizEAd!">
<meta charset="UTF-8">
<style>
textarea {
border:1px solid #999999;
width:80%;
margin:0.5% 0;
padding:0.25%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
</head>
<body>
<div style="text-align: center; margin: 1%;">
<h2>EA its in the game</h2>
<h4>Enter any tEAxt</h4>
<textarea id="text" spellcheck="false" rows="20">Sample text&#13;Ok this is epic&#13;Ea sports:&#13;its in the game
The intent is to provide players with a sense of pride and accomplishment for unlocking different heroes.
As for cost, we selected initial values based upon data from the Open Beta and other adjustments made to milestone rewards before launch. Among other things, we're looking at average per-player credit earn rates on a daily basis, and we'll be making constant adjustments to ensure that players have challenges that are compelling, rewarding, and of course attainable via gameplay.
We appreciate the candid feedback, and the passion the community has put forth around the current topics here on Reddit, our forums and across numerous social media outlets.
Our team will continue to make changes and monitor community feedback and update everyone as soon and as often as we can.
</textarea><br>
<button style="width: 10%; height: 5vh; margin: 1%;" class="btn btn-danger" onclick="EA()">EA</button>
</div>
<script>
function EA() {
const e = document.getElementById("text");
var str = e.value;
var EA = str.replace(/[eE](?![ Aa.eE]|$|\n)/g, 'EA').replace(/[eE][aA]/g, "EA");
e.value = EA;
}
</script>
</body>
</html>

File diff suppressed because one or more lines are too long