Last active
November 6, 2020 00:34
-
-
Save daledesilva/ba52a2f9ce32251f8563cdf25ea192b2 to your computer and use it in GitHub Desktop.
Lottie in iframe [template]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
} | |
.container { | |
position: absolute; | |
height: 100%; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<!-- DELETE THESE TWO LINES --> | |
<!-- AND PASTE YOUR LOTTIE SCRIPT HERE --> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment