Tikolu Emojimix
About this app
Create fun and colorful emoji mixes with Tikolu Emojimix!
Tikolu Emojimix Tikolu Emojimix Generate Mix
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Tikolu Emojimix</title>
<meta name="description" content="Create fun and colorful emoji mixes with Tikolu Emojimix!">
<meta name="keywords" content="emoji, mix, fun, colorful, Tikolu Emojimix">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
const emojis = ["😀", "😂", "😍", "🥰", "😎", "🤩", "🤔", "😊", "😉", "🤣", "🥳", "😘", "😇", "🙂", "😆"];
function generateMix() {
const mixContainer = document.getElementById("mix-container");
mixContainer.innerHTML = "";
for (let i = 0; i < 9; i++) {
const randomIndex = Math.floor(Math.random() * emojis.length);
const emoji = emojis[randomIndex];
const emojiElement = document.createElement("span");
emojiElement.innerHTML = emoji;
mixContainer.appendChild(emojiElement);
}
}
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
const generateButton = document.getElementById("generate-button");
generateButton.addEventListener("click", generateMix);
generateMix();
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #F8F9FA;
font-family: 'Roboto', sans-serif;
}
#main-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
color: #333;
margin-bottom: 20px;
}
#mix-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
#mix-container span {
font-size: 40px;
margin: 5px;
}
#generate-button {
background-color: #FFC107;
color: #333;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
#generate-button:hover {
background-color: #FFA000;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Tikolu Emojimix</h1>
<div id="mix-container"></div>
<button id="generate-button">Generate Mix</button>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!