Calculator Tools Calculator Tools
Create

Call Your Fav Celeb

Sep 9, 2023

About this app

A fun app to pretend call your favorite celebrities or cartoon characters

Select Music Sia - Chandelier Taylor Swift - Love Story Ed Sheeran - Shape of You

Related apps

Put this on your site

Source

                    <!DOCTYPE html>
<html>
<head>
<!-- Existing code -->

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
let callButton = document.getElementById("callButton");
let messageBox = document.getElementById("messageBox");

callButton.addEventListener('click', function() {
let character = document.getElementById("characterSelect").value;
messageBox.innerHTML = "Calling " + character + "... 📞";
});

// Add background music
let audioPlayer = document.getElementById("audioPlayer");
let audioSource = document.getElementById("audioSource");
let musicSelect = document.getElementById("musicSelect");

musicSelect.addEventListener('change', function() {
let selectedMusic = musicSelect.value;
audioSource.src = selectedMusic;
audioPlayer.load();
audioPlayer.play();
});
});
} catch (error) {
throw error;
}
</script>
</head>
<body>
<!-- Existing code -->

<audio id="audioPlayer" controls autoplay hidden>
<source id="audioSource" src="" type="audio/mpeg">
</audio>

<select id="musicSelect">
<option value="">Select Music</option>
<option value="https://example.com/sia.mp3">Sia - Chandelier</option>
<option value="https://example.com/taylor-swift.mp3">Taylor Swift - Love Story</option>
<option value="https://example.com/ed-sheeran.mp3">Ed Sheeran - Shape of You</option>
<!-- Add more options for other musicians -->
</select>
</body>
</html>