MVC View Image Drag&丢弃功能

时间:2018-06-08 01:55:04

标签: asp.net-mvc html5 asp.net-core bootstrap-4

我在bootstrap 4中有mvc .net核心项目,因为你可以看到图像功能正常工作但是中心没有拖放功能,如果我试图拖动图像"选择文件& #34;它可以工作,但不在中心,所以请你帮我一下拖放功能。

我不希望代码上传,图片不应上传到服务器端,还需要确保右侧有关闭按钮,该按钮应保持完好。

enter image description here

的JavaScript

$('.img-wrap .close').on('click', function () {
  var id = $(this).closest('.img-wrap').find('imgInp').data('id');
  $('#imgInp').attr('src', '');
  $("#file").val('');
});

CSS

.imgdrop {
  height: 30px;
}

.img-wrap {
  position: relative;
  display: inline-block;
  border: 1px red solid;
  font-size: 0;
}

.img-wrap .close {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 100;
  background-color: #FFF;
  padding: 5px 2px 2px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  opacity: .2;
  text-align: center;
  font-size: 22px;
  line-height: 10px;
  border-radius: 50%;
}

.img-wrap:hover .close {
  opacity: 1;
}

HTML

@Html.Label("Image"@*, new { @class = "control-label col-md-2"}*@)
<div class="col-md-3">
  <input type="file" id="file" name="file" class=" imgdrop" multiple="multiple" />
  <div class="img-wrap">
    <span class="close">&times;</span>
    <img src="#" alt="Alternate Image" id="imgInp" width="200" height="200" />
  </div>
</div>

0 个答案:

没有答案