Hy大家。
我有这段代码:
<div class="fl edit_options div_img">
<img class="img" src="${admin.img}" width="200px" height="200px" alt="Foto do Administrador" />
<div class="input_photo dropdowndiv"> <span>Alterar Foto</span>
<br />
<input type="file" name="file_photo" id="file_photo" value="Alterar Foto" />
</div>
<br />
<p>Administrador: ${admin.username}</p>
的jQuery
$('.dropdowndiv').hide();
$('.div_img').hover(function() {
$(this).find('.dropdowndiv').slideUp('fast');
}, function() {
$(this).find('.dropdowndiv').slideDown('fast');
});
CSS:
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
outline: none;
text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.fl {
float: left;
}
.edit_options {
margin: 50px;
}
.div_img {
position: relative;
margin-right: 0px;
padding-left: 0px;
}
.edit_admin img, .edit_admin p {
text-align: center;
}
.input_photo {
position: absolute;
width: 200px;
height: 54px;
bottom: 20px;
background: rgba(170, 173, 168, 0.9);
display: table;
}
.input_photo span {
height: 54px;
display: table-cell;
vertical-align: middle;
text-align: center;
color: #000000;
}
.input_photo input {
position: absolute;
right: 0;
bottom: 0;
width: 200px;
height: 54px;
z-index: 2;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer;
}
正如你所看到的那样,它不能正常工作,即在鼠标悬停在图像上时显示div。
我也相信我的方式,它太污染了。我相信在这种背景下有一种更优雅的方式可以达到相同的效果,我希望得到你的帮助。
我觉得很想念。如果有人有一个让jquery上传照片的插件,它会向我显示一个屏幕,用预定义的尺寸(200x200)调整图像大小,并在接受时剪切,非常感激。
感谢。
答案 0 :(得分:2)
您已切换事件
你让他们逆转了
$('.div_img').hover(function() {
$(this).find('.dropdowndiv').slideDown('fast');
}, function() {
$(this).find('.dropdowndiv').slideUp('fast');
});
动画不会因为.input_photo { display: table; }
而发生,这是因为jQuery无法为开箱即用的动画制作动画。如果你设置块元素的类型,你会看到它动画很好。
答案 1 :(得分:0)
.hover( handlerIn(eventObject), handlerOut(eventObject) )
当光标进入时,您希望文本向下滑动,以便显示。调用slideUp()
只是让浏览器尝试隐藏已经隐藏的div
。
尝试撤消您的功能:
$('.dropdowndiv').hide();
$('.div_img').hover(function() {
$(this).children('.dropdowndiv').slideDown('fast');
}, function() {
$(this).children('.dropdowndiv').slideUp('fast');
});
答案 2 :(得分:0)
假设您试图在鼠标移过照片区域时显示上传选项,则以下内容应该修复它。
$('.dropdowndiv').hide();
$('.div_img').hover(function() {
$('.dropdowndiv').slideDown('fast');
}, function() {
$('.dropdowndiv').slideUp('fast');
});