我正在为图像设计一个滑块以及所述图像的标题。我想要做的是让标题逃脱图像的边界。
所以我所做的就是为整个事情创建了一个包装器。包装div位于页面中心,position: relative;margin: 0 auto;
宽度为500像素,隐藏溢出。
里面是图像包装,有双倍宽度。在图像包装器内部有两个div,每个div都有一个tittle。它们的宽度各为500,它们与float:left
的位置相邻,它们内部的标题有一个'margin-left:-10px;'绝对位置和overflow: visible;
我想要的是标题溢出包装器外的那10个像素。
无论如何我能做到这一点吗?
这是一个示例代码
HTML:
<div id="wrap">
<div id="imgwrap">
<div id="imgbox" class="firstimg">
<div id="imgtitle">
<h3>Title here</h3>
</div>
</div>
<div id="imgbox" class="secondimg">
<div id="imgtitle">
<h3>Title here</h3>
</div>
</div>
</div>
</div>
JS:
jQuery(document).ready(function ($) {
$("#imgwrap").mouseleave(function () {
$(this).find('#imgbox').stop().css('marginLeft', '0');
$(".secondimg").find('#imgtitle').stop().css('marginLeft', '0');
}).mouseenter(function () {
$(this).find('#imgbox').animate({
marginLeft: '-500px',
}, 1000);
$(".secondimg").find('#imgtitle').animate({
marginLeft: '-10px',
}, 1000);
});
});
CSS:
#wrap {
width: 500px;
position: relative;
margin: 0 auto;
overflow:hidden;
}
#imgwrap {
overflow:hidden;
background: red;
height: 500px;
width:200%;
position: relative;
}
#imgbox {
float:left;
height: 250px;
width: 500px;
overflow: visible;
position:relative;
top:20%
}
.firstimg {
background: blue;
}
.secondimg {
background: green;
}
#imgtitle {
background: black;
width: auto;
position: absolute;
overflow: visible;
bottom:0;
}
.firstimg #imgtitle {
margin-left: -10px;
}
h3 {
font-size:20pt;
line-height: 0em;
color:white;
padding: 0 80px 0px 10px;
}
答案 0 :(得分:1)
在你的#wrap中添加padding-left:10px
。
从#imgWrap
中删除overflow:hidden
在您的javascript中,修改此部分
$(this).find('#imgbox').animate({
marginLeft: '**-510px**',
}, 1000);
这是JFiddle:http://jsfiddle.net/k3cPK/7/
答案 1 :(得分:0)
div.imgtitle
会增长以适应内容,因为您有width:auto
。明确设置width:150px
并设置white-space:nowrap
,它应该溢出