html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animated Ropeway</title>
</head>
<body>
<div id ="a">
<div class = "an">
<div id ="l"></div>
<div id ="b">
<div id ="d"> </div>
</div>
<div id ="c">
<div id ="e"> </div>
<div id ="f"> </div>
<div id ="g"><b> ROPEWAY</b></div>
</div>
<div class = "l"></div>
</div>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body{
margin:0;
}
#a{
background-color: black;
width:100vw;
height: 0px;
border-bottom: 2px solid black;
display: flex;
position: absolute;
top:20%;
}
#b {
border-bottom: 100px solid red;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
height: 0;
width: 120px;
position: relative;
top:12px;
-webkit-animation-name: example;
-webkit-animation-duration: 5s;
-webkit-animation-direction: alternate;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
#c{
border-top: 100px solid red;
Enter to Rename, Shift+Enter to Preview
js
js
1
alert("Thx a lot for 3K followers !!!");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run