Created
February 24, 2018 04:57
-
-
Save captaincole/74f4a900eb11fb27acc4add5ff192e26 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!-- Previous Video That A User Might Go Back To --> | |
| <video [hidden]="!isCurrent" [autoplay]="isCurrent" muted="true" playsinline looped preload="auto"></video> | |
| <!-- Current Video That Should Autoplay --> | |
| <video [hidden]="!isCurrent" [autoplay]="isCurrent" muted="true" playsinline looped preload="auto"></video> | |
| <!-- Next Video, Preloaded for content --> | |
| <video [hidden]="!isCurrent" [autoplay]="isCurrent" muted="true" playsinline looped preload="auto"></video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment