Last active
May 16, 2022 09:33
-
-
Save KostaMalsev/6264ed3567ac1537d39bcbebc3d2f738 to your computer and use it in GitHub Desktop.
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
<head> | |
<title>Create Gif</title> | |
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0"> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="dialog"> | |
<div class="subtitle" id='log'> </div> | |
<div class="button-wrapper upload-buttons"> | |
<input type="file" accept="video/*" id="input-tag" multiple /> | |
<label for="input-tag"> | |
<div class="button">Video to GIF</div> | |
</label> | |
<input type="file" accept="image/gif" id="image-upload" multiple /> | |
<label for="image-upload"> | |
<div class="button">GIF to video</div> | |
</label> | |
</div> | |
<br> | |
<img id="img-tag"> | |
<video controls id="video-tag" class="hidden" style="height:100px"></video> | |
<br> | |
<div class="button convert-button hidden">Convert</div> | |
<div id="files"></div> | |
</body> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment