Skip to content

Commit fcf496d

Browse files
authored
Typing effect with javascript
1 parent 396d385 commit fcf496d

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

AutoWriteText/app.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
let text = document.querySelector(".text-content");
2+
let index = 0;
3+
4+
window.onload = function () {
5+
const textContent = "PHOTO OF VERY SEXY BLACK BMW 4 WHICH IS GUNEY'S CAR".split("");
6+
7+
let interval = setInterval(function(){
8+
if(index < textContent.length){
9+
text.innerHTML += textContent[index];
10+
index ++;
11+
}
12+
}, 100);
13+
14+
}

AutoWriteText/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
7+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
8+
<link rel="stylesheet" type="text/css" href="style.css">
9+
<title>Document</title>
10+
</head>
11+
<body>
12+
<h1 class="text-content"></h1>
13+
14+
<script src="app.js"></script>
15+
</body>
16+
</html>

AutoWriteText/style.css

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
body {margin: 0;padding:0;font-family: 'Montserrat', Arial, Helvetica, sans-serif; background: url("https://cdn.bmwblog.com/wp-content/uploads/Matte-Black-HRE-Wheels-For-A-Black-Sapphire-M4-1.jpg") no-repeat center center fixed; -webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;}
2+
3+
.text-content {
4+
color:white;
5+
text-align: center;
6+
margin-top: 450px;
7+
font-weight: bold;
8+
text-shadow: 2px 2px #000000;
9+
letter-spacing: 3px;
10+
}

0 commit comments

Comments
 (0)