gpt4 book ai didi

javascript - 在 jquery 和 bootstrap 中创建更新个人资料图片

转载 作者:太空宇宙 更新时间:2023-11-04 12:30:54 25 4
gpt4 key购买 nike

我正在尝试为 update profile picture 执行功能,就像 facebook update profile picture option.like 当光标悬停在图像上时,用户会在他的图片上方获取更新个人资料图片 div,当用户单击该 div Bootstrap 模型将打开,要求提供个人资料图片。

这是我到目前为止所做的代码 jsfiddle

<div class="col-sm-4">                              
<img class="img-thumbnail" style="width:100%" src="<img src="bootstrap/assets/img/profiles/avatar2x.jpg'">
<div class='picture-hover'>Update Profile Picture</div>
</div>

我遇到的问题是 picture-hover 没有像 facebook 一样显示在图片上方。

第2点击picture-hover时,我可以显示上传图片的模型。

请指点我正确的方向

最佳答案

Bootstrap 没有自己的图像叠加层,因此如果不编写一些自己的代码就无法构建它。

如果您按照我在 Google 上找到的以下示例进行操作,您可以像这样进行叠加:

http://www.bootply.com/90238

HTML

<div class="container">
<div class="row">
<div class="col-md-3">
<div class="thumbnail">
<div class="caption">
<h4>Thumbnail Headline</h4>
<p>short thumbnail description</p>
<p><a href="" class="label label-danger" rel="tooltip" title="Zoom">Zoom</a>
<a href="" class="label label-default" rel="tooltip" title="Download now">Download</a></p>
</div>
<img src="http://lorempixel.com/400/300/sports/1/" alt="...">
</div>
</div>
</div>

CSS

.thumbnail {
position:relative;
overflow:hidden;
}

.caption {
position:absolute;
top:0;
right:0;
background:rgba(66, 139, 202, 0.75);
width:100%;
height:100%;
padding:2%;
display: none;
text-align:center;
color:#fff !important;
z-index:2;
}

jQuery

$('.thumbnail').hover(
function(){
$(this).find('.caption').slideDown(250); //.fadeIn(250)
},
function(){
$(this).find('.caption').slideUp(250); //.fadeOut(205)
}
);

关于javascript - 在 jquery 和 bootstrap 中创建更新个人资料图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27664727/

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