Reactors
About this app
Reactors app where Markiplier, Vannamelon, PewDiePie, iHasCupquake, shane, EthGoesBOOM, Joey Graceffa, Jacksepticeye, YOGSCAST Lewis & Simon, PointlessBlogGames and Yammy are reacting to video called '1 Second Of Every Animated Series (Updated For the 8th Time)'
Reactors
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>Reactors</title>
<meta name="description" content="Reactors app where Markiplier, Vannamelon, PewDiePie, iHasCupquake, shane, EthGoesBOOM, Joey Graceffa, Jacksepticeye, YOGSCAST Lewis & Simon, PointlessBlogGames and Yammy are reacting to video called '1 Second Of Every Animated Series (Updated For the 8th Time)'">
<meta name="keywords" content="reactors, Markiplier, Vannamelon, PewDiePie, iHasCupquake, shane, EthGoesBOOM, Joey Graceffa, Jacksepticeye, YOGSCAST Lewis & Simon, PointlessBlogGames, Yammy, YouTube, video, reaction">
<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">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
const reactors = [
{ name: "Markiplier", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "Vannamelon", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "PewDiePie", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "iHasCupquake", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "shane", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "EthGoesBOOM", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "Joey Graceffa", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "Jacksepticeye", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "YOGSCAST Lewis & Simon", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "PointlessBlogGames", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" },
{ name: "Yammy", videoUrl: "https://www.youtube.com/watch?v=XGmMPl-bMAg" }
];
function redirectToVideo(videoUrl) {
window.location.href = videoUrl;
}
function createButton(reactor) {
const button = document.createElement("button");
button.innerText = reactor.name;
button.classList.add("btn", "btn-primary", "mx-2");
button.addEventListener("click", function() {
redirectToVideo(reactor.videoUrl);
});
return button;
}
const mainContainer = document.getElementById("main-container");
reactors.forEach(function(reactor) {
const button = createButton(reactor);
mainContainer.appendChild(button);
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 100vh;
}
.btn {
font-size: 18px;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: #ff4d4f;
border: none;
color: #ffffff;
}
.btn-primary:hover {
background-color: #d41c1c;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- Reactor buttons will be dynamically added here -->
</div>
</body>
</html>
NEW APPS
These are apps made by the community!