Created
September 12, 2018 03:53
-
-
Save jigewxy/505fa29efe92e95059ab6dc8fdb3b10d to your computer and use it in GitHub Desktop.
video analyzer
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
<template> | |
<div class="about"> | |
<div class="player"> | |
<iframe width="100%" height="100%" | |
src="https://www.videoindexer.ai/embed/player/00000000-0000-0000-0000-000000000000/9a296c6ec3" frameborder="0" allowfullscreen></iframe> | |
</div> | |
<div class="analyzer"> | |
<iframe width="100%" height="780" | |
src="https://www.videoindexer.ai/embed/insights/00000000-0000-0000-0000-000000000000/9a296c6ec3/?widgets=people,keywords,annotations" frameborder="0" allowfullscreen></iframe> | |
</div> | |
</div> | |
</template> | |
<script> | |
</script> | |
<style> | |
.about{ | |
display:grid; | |
grid-template-columns: 5fr 3fr; | |
grid-column-gap: 10pt; | |
} | |
.player{ | |
grid-column: 1; | |
} | |
.analyzer{ | |
grid-column: 2; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment