1 Million Times Meme Video Generator
About this app
Create your own 1 million times meme video with easy video manipulation and download options.
1 Million Times Meme Video Generator 1 Million Times Meme Video Generator Generate Meme Video 0% Your browser does not support the video tag.
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 1 million times meme video with easy video manipulation and download options.">
<meta name="keywords" content="meme generator, video creator, meme video, fun video, 1 million times meme">
<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- Font Awesome (6.6.0) -->
<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 {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
const generateButton = document.getElementById('generate-button');
const videoOutput = document.getElementById('video-output');
const progressBar = document.getElementById('progress-bar');
generateButton.addEventListener('click', function() {
const memeText = document.getElementById('meme-text').value;
const resultVideo = `https://via.placeholder.com/640x480.png?text=${encodeURIComponent(memeText)}`;
videoOutput.src = resultVideo;
videoOutput.style.display = 'block';
progressBar.style.width = '0%';
// Simulate video generation
let progress = 0;
const interval = setInterval(() => {
progress += 10;
progressBar.style.width = `${progress}%`;
if (progress >= 100) clearInterval(interval);
}, 500);
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background: linear-gradient(120deg, #84fab0, #8fd3f4);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
padding: 20px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.6);
}
.progress {
height: 30px;
border-radius: 5px;
background: #ccc;
}
.progress-bar {
background: #28a745;
}
video {
margin-top: 20px;
display: none;
border: 3px solid white;
border-radius: 10px;
}
h1 {
text-align: center;
margin-bottom: 25px;
}
.input-group {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>1 Million Times Meme Video Generator</h1>
<div class="input-group mb-3">
<input type="text" id="meme-text" class="form-control" placeholder="Enter your meme text" aria-label="Meme text">
<button class="btn btn-primary" id="generate-button">Generate Meme Video</button>
</div>
<div class="progress">
<div class="progress-bar" id="progress-bar" role="progressbar">0%</div>
</div>
<video id="video-output" controls width="640">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!