0

有一个块,里面有另一个相对块,它有一个父块样式的背景(比如在一张图片上)。当我试图改变我的块的宽度时,相对块消失了。

图片

<!DOCTYPE html>

<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<style>
 #button
{
    width: 195px ;
    height: 60px;
    display: inline-block;
    position: relative;
    background: url('/res/bg.png') repeat-x;
}
#button div#arrow
{
    background: url('/res/Arrow.png') no-repeat;
    width: 30px;
    height: 60px;
    display: block;
    position: absolute;
    top:0px;
    right: -30px;
}


</style>
</head>
<body>

<div id='button'>
<div id='arrow'></div> 
</div>
</body>
</html>

忘记了动画的代码: $('#button').animate({width:'-=120px'}, 2000)

4

1 回答 1

0

设置overflow: visible !important在父级上div
演示:http: //jsfiddle.net/P5CHX/2/

于 2012-08-28T10:38:20.230 回答