1 Million Times Video Meme Generator
About this app
Generate endless video memes with the 1 Million Times Video Meme Generator. Create fun and engaging memes from your favorite videos easily!
1 Million Times Video Meme Generator 1 Million Times Video Meme Generator 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 Video Meme Generator</title>
<meta name="description" content="Generate endless video memes with the 1 Million Times Video Meme Generator. Create fun and engaging memes from your favorite videos easily!">
<meta name="keywords" content="video meme generator, create memes, generate memes, social media memes, fun videos, meme platform">
<!-- 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.
let memes = [];
document.addEventListener("DOMContentLoaded", function() {
const generateButton = document.getElementById('generate');
const memeInput = document.getElementById('meme-url');
const memeContainer = document.getElementById('meme-container');
generateButton.addEventListener('click', function() {
const memeUrl = memeInput.value;
if(memeUrl) {
const newMeme = `<div class="meme-item shadow-lg"><video controls autoplay loop> <source src="${memeUrl}" type="video/mp4"> Your browser does not support the video tag. </video></div>`;
memes.push(newMeme);
memeContainer.innerHTML = memes.join('');
memeInput.value = '';
}
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #ffcc00, #ff6699);
color: #fff;
text-align: center;
}
#main-container {
margin-top: 50px;
}
#generate {
margin-top: 20px;
background-color: #ff4444;
color: white;
}
#generate:hover {
background-color: #ff2222;
transition: background-color 0.3s;
}
.meme-item {
margin: 10px auto;
width: 80%;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 2.5rem;
}
input[type="text"] {
margin-top: 20px;
width: 60%;
padding: 10px;
border: 1px solid #fff;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
input[type="text"]:focus {
outline: none;
border: 2px solid #ffcc00;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>1 Million Times Video Meme Generator</h1>
<input type="text" id="meme-url" placeholder="Paste your video URL (mp4)" />
<button id="generate" class="btn btn-lg">Generate Meme</button>
<div id="meme-container" class="mt-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!