gpt4 book ai didi

javascript - 如何在上传图片后更改 DIV 的背景?

转载 作者:行者123 更新时间:2023-11-28 07:29:36 25 4
gpt4 key购买 nike

现在我有一个占位符图像设置为背景,上面有一个不可见的 asp:FileUpload。用户单击并选择图像后,我想更改占位符图像(使用 css 背景设置)。

<div id="icon">
<asp:FileUpload ID="AvatarUpload" CssClass="avatar-upload" runat="server" size="38" />
</div>

CSS:

#icon {
width: 120px;
height: 120px;
background: url("../image/mobile/upload-avatar.png") no-repeat bottom center;
background-size: 120px 120px;
}

.avatar-upload {
opacity: 0;
width: 100%;
height: 120px;
cursor: pointer;
}

有没有办法在没有提交/上传按钮的情况下做到这一点?

最佳答案

这应该可以满足您的需求:

    var icon = document.querySelector('#icon');
document.querySelector('#AvatarUpload').addEventListener("change",function(e){
icon.style.background = 'url('+URL.createObjectURL(e.target.files[0])+')';
});
#icon{
width : 120px;
height : 120px;
background : red;
background-size: contain ! important;
overflow : hidden;
}

#AvatarUpload{
opacity: 0;
width: 100%;
height: 120px;
}
<div id="icon">
<input type="file" id="AvatarUpload"/>
</div>

关于javascript - 如何在上传图片后更改 DIV 的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31606374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com