Sparta Remix - Create Your Own Epic Soundtrack
About this app
Unleash your creativity and remix epic soundtracks from Sparta with our fun and interactive web app!
Sparta Remix - Create Your Own Epic Soundtrack Sparta Remix Create your own epic soundtrack by remixing iconic sounds! Kick Snare Hi-Hat Tom
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>Sparta Remix - Create Your Own Epic Soundtrack</title>
<meta name="description" content="Unleash your creativity and remix epic soundtracks from Sparta with our fun and interactive web app!">
<meta name="keywords" content="Sparta, remix, music, soundtrack, creativity, web app, fun, interactive">
<!-- 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.
const sounds = {
"kick": new Audio("https://www.soundjay.com/button/sounds/button-3.mp3"),
"snare": new Audio("https://www.soundjay.com/button/sounds/button-4.mp3"),
"hihat": new Audio("https://www.soundjay.com/button/sounds/button-5.mp3"),
"tom": new Audio("https://www.soundjay.com/button/sounds/button-6.mp3"),
};
const playSound = (sound) => {
sounds[sound].currentTime = 0;
sounds[sound].play().catch(e => console.log(e));
};
document.addEventListener("DOMContentLoaded", function() {
const soundButtons = document.querySelectorAll('.sound-button');
soundButtons.forEach(button => {
button.addEventListener('click', function() {
const soundName = this.getAttribute('data-sound');
playSound(soundName);
});
});
// Fun animations for buttons
$(".sound-button").hover(function(){
$(this).addClass('animate__animated animate__pulse');
}, function(){
$(this).removeClass('animate__animated animate__pulse');
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #FF9A85, #FF6A88);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
text-align: center;
padding: 50px;
}
h1 {
margin-bottom: 30px;
}
.sound-button {
padding: 20px;
margin: 15px;
border: none;
border-radius: 8px;
background-color: #6F2C91;
color: white;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
font-size: 20px;
}
.sound-button:hover {
background-color: #9E4E95;
transform: scale(1.05);
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Sparta Remix</h1>
<p>Create your own epic soundtrack by remixing iconic sounds!</p>
<button class="sound-button" data-sound="kick">Kick</button>
<button class="sound-button" data-sound="snare">Snare</button>
<button class="sound-button" data-sound="hihat">Hi-Hat</button>
<button class="sound-button" data-sound="tom">Tom</button>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</body>
</html>
NEW APPS
These are apps made by the community!