使用动画jquery时,css width没有显示

时间:2013-04-21 13:39:27

标签: jquery css

我有一个div位置固定并使用jquery的animate函数在这个位置增长这个div并进入这个hide div我有其他div用于显示信息在这种情况下mobile_title

<style>

#mobile_col_left
{
  position:fixed;
  float:left;
  width:5%;
  height:150%;
  background-color:#000;
  z-index:9999999;
}


#mobile_menu_title
{
  position:relative;
  width:97%;
  height:38px;
  line-height:38px;
  margin:auto;
  background-color:#ccc;
  padding-legt:1%;
  font-family:Arial;
  color:#000;
  font-size:15px;
}

</style>



$("#mobile_col_left").animate({ width: '65%' }, "slow");

mobile_col加载在mobile_menu_title里面,当我加载5%的mobile_col时,人们可以看到这个宽度,当我激活动画时div增长到65%但是在div里面,div叫做mobile_menu_title,没有成长也是97%,总是保持其他尺寸的宽度

这个问题是为什么没有增长div的名为mobile_title,当我习惯增加并覆盖其他div的所有大小时,但是没有发生这个

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

你的问题不是很清楚。

只是说父母的位置相对于固定定位的孩子没有做任何事情,你可以开始这样思考。