1 Million Times Meme Video Generator
About this app
Create your own hilarious '1 Million Times' meme videos with custom text and images!
1 Million Times Meme Video Generator 1 Million Times Meme Video Generator Enter Meme Text: Image URL: Generate Meme
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>1 Million Times Meme Video Generator</title>
<meta name="description" content="Create your own hilarious '1 Million Times' meme videos with custom text and images!"></meta>
<meta name="keywords" content="Meme, Video Generator, 1 Million Times, Fun, Create, Share">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
$('#generate-btn').on('click', function() {
const textInput = $('#text-input').val();
const imageUrl = $('#image-input').val();
if (!textInput || !imageUrl) {
alert('Please provide both text and image URL.');
return;
}
$('#output').html(`
<h3>Your 1 Million Times Meme:</h3>
<div class="meme-preview text-center">
<img src="${imageUrl}" class="rounded" style="width: 100%; max-width: 300px;">
<p class="fw-bold mt-2">${textInput}</p>
</div>
`);
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #ff7e5f, #feb47b);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
padding: 20px;
border-radius: 8px;
margin-top: 50px;
background-color: rgba(0, 0, 0, 0.7);
}
.meme-preview {
border-radius: 10px;
padding: 10px;
background: rgba(255, 255, 255, 0.1);
margin-top: 20px;
}
input {
margin-bottom: 10px;
}
button {
background-color: #ff4757;
color: #fff;
}
button:hover {
background-color: #ff6b81;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="text-center">1 Million Times Meme Video Generator</h1>
<div class="mb-3">
<label for="text-input" class="form-label">Enter Meme Text:</label>
<input type="text" class="form-control" id="text-input" placeholder="Enter your meme text...">
</div>
<div class="mb-3">
<label for="image-input" class="form-label">Image URL:</label>
<input type="url" class="form-control" id="image-input" placeholder="Enter image URL...">
</div>
<button class="btn btn-primary" id="generate-btn">Generate Meme</button>
<div id="output" class="my-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!