0
我在動畫從底部到頂部的div動畫時遇到了問題。它在Firefox中運行良好,但在Chrome中表現奇怪。我的猜測是,這與「頂部」獲得動畫而不是「底部」有關,但我不知道要解決這個問題。從下到上的JQuery動畫不能在Chrome中工作
\t $(document).ready(function(){
\t $("#animate").click(function() {
$("#two").animate(
\t {
\t \t
\t \t top: "100"
\t }, 1000);
});
});
html, body { height:100%; }
#container {
position: relative;
width:100%;
margin: 0 auto;
background: #ccc;
height: 100%;
clear:both;
}
#left {
position: relative;
width:25%;
max-width: 300px;
float:left;
height: 100%;
background: blue;
}
#right {
width:50%;
max-width: 649px;
float:right;
height: 100%;
background: red;
}
#one {
position: absolute;
width:100%;
height: 100px;
background: black;
top:0;
}
#two {
width:100%;
height: 100px;
background: green;
position: absolute;
bottom:0;
}
<div id="container">
\t <div id="left">
\t \t <div id="one">
\t </div>
\t <div id="two">
\t \t <button id="animate">button</button>
\t </div>
\t </div>
\t <div id="right">
\t </div>
</div>
感謝您的建議。但我已經解決了它與設置頂部:100%;而不是底部:0;爲#二格。 – JohnnyStuttgart 2014-10-31 09:12:55