Created
November 1, 2019 09:23
-
-
Save salmanx/ef76f81fa3d6aaa524d21c50e720e45b to your computer and use it in GitHub Desktop.
multiple image upload using javascript, copied from https://jsfiddle.net/Logan_Wayne/xz6dgLz1/#fork
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="container"> | |
<h3 class="page-header">Upload Photos Page</h3> | |
<form class="form-horizontal"> | |
<div class="form-group"> | |
<label for="photo" class="col-sm-2 control-label">Upload</label> | |
<div class="col-sm-10"> | |
<input type="file" class="form-control" name="photo" id="photo" accept=".png, .jpg, .jpeg" onchange="readFile(this);" multiple> | |
</div> | |
</div> | |
</form> | |
<div id="status"></div> | |
<div id="photos" class="row"></div> | |
</div> | |
<script> | |
function readFile(input) { | |
$("#status").html('Processing...'); | |
counter = input.files.length; | |
for(x = 0; x<counter; x++){ | |
if (input.files && input.files[x]) { | |
var reader = new FileReader(); | |
reader.onload = function (e) { | |
$("#photos").append('<div class="col-md-3 col-sm-3 col-xs-3"><img src="'+e.target.result+'" class="img-thumbnail"></div>'); | |
}; | |
reader.readAsDataURL(input.files[x]); | |
} | |
} | |
if(counter == x){$("#status").html('');} | |
} | |
</script> |
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
.img-thumbnail{ | |
width:100%; | |
height:100px; | |
object-fit: cover; | |
object-position: center; | |
margin:10px; | |
} | |
@media(max-width: 480px) { | |
.img-thumbnail{ | |
height:50px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment