0
我想能夠添加一個動畫到這個簡單的查詢當div轉換到新的位置。jquery動畫效果移動div
<div class="container">
<div class="left-side-bar">
<div class="long blue" id="1">
1
</div>
<div class="short red" id="2">
2
</div>
</div>
<div class='middle-side-bar'>
<div class='long green' id="3">
3
</div>
</div>
<div class='right-side-bar'>
<div class='short yellow' id="4">
4
</div>
</div>
</div>
的CSS
.left-side-bar{
clear: both;
width: 32%;
text-align: center;
float: left;
margin-top: 1%;
margin-bottom: 100px;
}
.middle-side-bar{
width: 32%;
text-align: center;
float: left;
margin: 1% 0 1% 1.6%;
}
.right-side-bar{
width: 32%;
text-align: center;
float: left;
margin: 1% 0 1% 1.6%;
}
.green {
background-color: green;
}
.long {
height: 300px;
}
.short {
height: 200px;
}
.red {
background-color: red;
}
.blue {
background-color: blue;
}
.yellow {
background-color: yellow;
}
基本上我想在div被移到了新地方作爲動畫過渡,而不是把它簡單地出現。
這裏是的jsfiddle DEMO
他們應該在哪裏移動?你的意思是在頁面加載中#2替換#4的位置? – jmore009
一旦屏幕寬度發生變化,但我還沒有添加,但.. – CYBERSIX
你的意思是像(例如)這樣? http://jsfiddle.net/4b0868ft/ –