Перетащите файл ввода и предварительный просмотр изображений перед загрузкой

Я хочу создать функцию перетаскивания div-вложений, и когда кто-то щелкает по ней, он может выбрать свое изображение

Я что-то кодировал, и его можно - нажмите div и выберите свое изображение - просмотрите его перед загрузкой

ты можешь проверить мою скрипку

CSS

.uploader {width:300px;height:350px;background:#f3f3f3;border:2px dashed #e8e8e8;}

Javascript

    var imageLoader = document.getElementById('filePhoto');
    imageLoader.addEventListener('change', handleImage, false);

function handleImage(e) {
    var reader = new FileReader();
    reader.onload = function (event) {

        $('.uploader').html( '<img width="300px" height="350px" src="'+event.target.result+'"/>' );
    }
    reader.readAsDataURL(e.target.files[0]);
}

HTML

<div class="uploader" onclick="$('#filePhoto').click()">click here or drag here your images for preview and set userprofile_picture data</div>
            <input type="file" name="userprofile_picture"  id="filePhoto" style="display:block;width:185px;"  />

Вы можете проверить http://jsfiddle.net/ELcf6/

1 ответ

Решение

Вы можете сделать это с небольшими хитростями CSS. входной элемент принимает drop. Я изменил ваш код, как показано ниже:

CSS

.uploader {
    position:relative; 
    overflow:hidden; 
    width:300px; 
    height:350px;
    background:#f3f3f3; 
    border:2px dashed #e8e8e8;
}

#filePhoto{
    position:absolute;
    width:300px;
    height:400px;
    top:-50px;
    left:0;
    z-index:2;
    opacity:0;
    cursor:pointer;
}

.uploader img{
    position:absolute;
    width:302px;
    height:352px;
    top:-1px;
    left:-1px;
    z-index:1;
    border:none;
}

Javascript

var imageLoader = document.getElementById('filePhoto');
imageLoader.addEventListener('change', handleImage, false);

function handleImage(e) {
    var reader = new FileReader();
    reader.onload = function (event) {
        $('.uploader img').attr('src',event.target.result);
    }
    reader.readAsDataURL(e.target.files[0]);
}

HTML

<div class="uploader" onclick="$('#filePhoto').click()">
    click here or drag here your images for preview and set userprofile_picture data
    <img src=""/>
    <input type="file" name="userprofile_picture"  id="filePhoto" />
</div>

Я надеюсь, что это помогает. Вы можете проверить http://jsfiddle.net/ELcf6/4/ и другую версию http://jsfiddle.net/ELcf6/8/

Другие вопросы по тегам