Calculator Tools Calculator Tools
Create

YTpmv Scan Maker - Create Unique YouTube Scans for Fun

May 2, 2026

About this app

Create unique and colorful YTpmv scan videos easily with our fun web app! Customize your video parameters, blend colors, and enjoy the creative process.

YTpmv Scan Maker - Create Unique YouTube Scans for Fun YTpmv Scan Maker Enter Scan Text: Choose Background Color: Animation Speed (seconds): 1s 2s 3s Generate YTpmv Scan Video

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>YTpmv Scan Maker - Create Unique YouTube Scans for Fun</title>
<meta name="description" content="Create unique and colorful YTpmv scan videos easily with our fun web app! Customize your video parameters, blend colors, and enjoy the creative process."/>
<meta name="keywords" content="YTpmv, scan maker, YouTube, video maker, animated scans, video creation, fun tools"/>

<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<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 {
document.addEventListener("DOMContentLoaded", function() {
const submitButton = document.getElementById('generate');
submitButton.addEventListener('click', function() {
const videoText = document.getElementById('videoText').value;
const bgColor = document.getElementById('bgColor').value;
const animationSpeed = document.getElementById('animationSpeed').value;

const resultContainer = document.getElementById('result');
resultContainer.innerHTML = '<div class="scan-result" style="background: ' + bgColor + '; animation: animateScan ' + animationSpeed + 's infinite;">' + videoText + '</div>';
});
});

const styles = document.createElement('style');
styles.innerHTML = `
.scan-result {
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2em;
width: 80%;
height: 150px;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@keyframes animateScan {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
`;
document.head.appendChild(styles);

} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(to right, #ff007f, #7f00ff);
color: white;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
margin: 30px 0;
}
label {
margin: 10px 0;
}
input, select {
margin: 10px 0;
padding: 10px;
border-radius: 5px;
border: none;
width: 80%;
font-size: 16px;
}
#generate {
background: #ff4f9f;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
color: white;
cursor: pointer;
transition: background 0.3s;
}
#generate:hover {
background: #ff007f;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>YTpmv Scan Maker</h1>
<label for="videoText">Enter Scan Text:</label>
<input type="text" id="videoText" placeholder="Type your video text here...">

<label for="bgColor">Choose Background Color:</label>
<input type="color" id="bgColor" value="#ff007f">

<label for="animationSpeed">Animation Speed (seconds):</label>
<select id="animationSpeed">
<option value="1">1s</option>
<option value="2">2s</option>
<option value="3">3s</option>
</select>

<button id="generate">Generate YTpmv Scan Video</button>

<div id="result"></div>
</div>
</body>
</html>