Skip to content

Instantly share code, notes, and snippets.

@daledesilva
Last active November 6, 2020 00:34
Show Gist options
  • Save daledesilva/0770493f213de250bba823285ec6e6b1 to your computer and use it in GitHub Desktop.
Save daledesilva/0770493f213de250bba823285ec6e6b1 to your computer and use it in GitHub Desktop.
Accessible Lottie in iframe [template]
<!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" aria-label="PUT YOUR DESCRIPTION FOR SCREEN READERS HERE">
<!-- 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