Endless Vine Player
About this app
Watch the 'When mic wants you stop' Vine video endlessly.
Endless Vine Player 🎤 "When mic wants you stop" 🔁
Related apps
Put this on your site
Source
<!DOCTYPE html>
<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>Endless Vine Player</title>
<meta name="description" content="Watch the 'When mic wants you stop' Vine video endlessly.">
<meta name="keywords" content="vine, endless, loop, funny, mic, stop, video">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
body {
background: linear-gradient(45deg, #f06, #a6f);
font-family: 'Press Start 2P', cursive;
color: #fff;
text-align: center;
padding-top: 20vh;
}
iframe {
border: 5px solid #fff;
border-radius: 10px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
h1 {
font-size: 2rem;
margin-bottom: 2rem;
}
.emoji {
font-size: 3rem;
display: block;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>🎤 "When mic wants you stop" <span class="emoji">🔁</span></h1>
<iframe id="vine-video" width="560" height="315" src="https://vine.co/f64265d0-dd35-4402-b8a5-8bc38cbfe202" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<script>
$(document).ready(function() {
// Get the number of clones from the URL
var urlParams = new URLSearchParams(window.location.search);
var numClones = parseInt(urlParams.get('clones')) || 1;
// Clone the video iframe
var originalVideo = $('#vine-video');
for (var i = 1; i < numClones; i++) {
originalVideo.clone().appendTo('#main-container');
}
});
</script>
</body>
</html>
NEW APPS
These are apps made by the community!