I have a file input element. I would like to attach an event listener that sets the background of a target element to the image that is uploaded by the user.
<input id='file' type='file'/>
<div id='frame'></div>
const frame = document.getElementById('frame');
const file = document.getElementById('file');
file.addEventListener('change', function() {
// set the background image of `frame` to the uploaded image
});
How can I set the background image of frame
to the image that is uploaded by the user?
You access files using
Element#files
You can get a data URI from the image by using
FileReader#readAsDataUrl
:You can then assign the data URI to the background image property