Last active
February 27, 2017 23:15
-
-
Save ShankarSumanth/495bc854dba51bea3669c127a97c6c37 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
<div class="row"> | |
<div class="col-xs-12"> | |
<video #video class="video"></video> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<button md-raised-button color="primary" (click)="startRecording()"> Record </button> | |
<button md-raised-button color="primary"(click) ="stopRecording()"> Stop</button> | |
<button md-raised-button color="primary" (click)="download()"> Download</button> | |
</div> | |
</div> |
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
.video { | |
box-shadow: 1px 6px 10px 2px rgba(35, 35, 35, 0.62); | |
height: 600px; | |
max-height: 800px; | |
width: 1067px; | |
} | |
.row { | |
margin-bottom: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment