我有这样的事情:
<style>
#submenu {
background-color: #eee;
height:200px;
width:400px;
opacity: 1;
-webkit-transition: all 1s ease-in-out;
}
.doSomething {
background-color: #fc3;
-webkit-transform: rotate(360deg);
visibility:collapse;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="submenu">`enter code here`
<div style="background-color:black;width:50;height:50"></div>
</div>
<div style="background-color:yellow;height:250"></div>
<script type="text/javascript">
$(function(){
$('#submenu').addClass('doSomething');
});
</script>
</body>
问题是当第一个 div 完成动画时,我想隐藏他和下面的 div(黄色)来代替他。我试图将属性 display:none 但动画不起作用。
任何帮助都非常感谢。