Last active
November 6, 2020 00:34
-
-
Save daledesilva/0770493f213de250bba823285ec6e6b1 to your computer and use it in GitHub Desktop.
Accessible 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" 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