parent
19e93d6840
commit
01ae675ae5
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Auto Text Effect</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="text">Starting...</h1>
|
||||
|
||||
<div>
|
||||
<label for="speed">Speed:</label>
|
||||
<input type="number" name="speed" id="speed" value="1" min="1" max="10" step="1">
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,22 @@
|
||||
const textEl = document.getElementById('text')
|
||||
const speedEl = document.getElementById('speed')
|
||||
const text = 'We Love Programming!'
|
||||
let idx = 1
|
||||
let speed = 300 / speedEl.value
|
||||
|
||||
writeText()
|
||||
|
||||
function writeText() {
|
||||
textEl.innerText = text.slice(0, idx)
|
||||
|
||||
idx++
|
||||
|
||||
if(idx > text.length) {
|
||||
idx = 1
|
||||
}
|
||||
|
||||
setTimeout(writeText, speed)
|
||||
}
|
||||
|
||||
|
||||
speedEl.addEventListener('input', (e) => speed = 300 / e.target.value)
|
@ -0,0 +1,38 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: darksalmon;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
padding: 10px 20px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 50px;
|
||||
padding: 5px;
|
||||
font-size: 18px;
|
||||
background-color: darksalmon;
|
||||
border: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
}
|
Loading…
Reference in new issue