html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div>
Loading Effects
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets1.lottiefiles.com/private_files/lf30_pnsdxdme.json" background="transparent" speed="1"
style="width: 300px; height: 300px;"
loop autoplay>
</lottie-player>
</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
body
{
background-color: #000;
height: 100vh;
width: 100vw;
display: grid;
place-content: center;
}
div{
text-align: center;
font-size: 20px;
font-family: fantasy;
height: 200px;
width: 300px;
color: #fff;
border-radius: 20px;
}
Enter to Rename, Shift+Enter to Preview
js
js
BROWSER
Console
Run