我尝试使用jQuery toggle()
从左到右实现幻灯片切换 ,反之亦然。
Toggle有效,但我希望div的下一个元素切换到平滑动画并行切换效果。
检查我尝试过的代码: jsFiddle
HTML
<button id="button" class="myButton">Run Effect</button>
<div id="myDiv">
<p>This div will have slide toggle effect.</p>
</div>
<div class="other_details">
This should move parallel with re-size of div being toggled.
</div>
的jQuery
$(".myButton").click(function () {
var effect = 'slide';
var duration = 500;
$('#myDiv').toggle(effect, {direction: "left"}, duration);
});
CSS
#myDiv {
color:Green;
background-color:#eee;
border:2px solid #333;
text-align:justify;
float:left;
width:200px;
}
.other_details{
float:left;
font-weight:bold;
width:200px;
border:1px solid black;
padding:5px;
margin-left:2px;
}
您可以在输出中看到"other_details"
div并非与切换效果并行移动。 仅在完成切换效果后才会移动。
请帮我解决问题。
答案 0 :(得分:5)
我使用了animate()
查看此jsFiddle
$(".myButton").click(function () {
var effect = 'width';
var duration = 500;
//if the current width is 200px, then the target width is 0px otherwise the target width is 200px
var targetWidth = $('#myDiv').css("width")=="200px"?"0px":"200px";
//Check if the div was hidden then display it
if(!$("#myDiv").is(":visible")){
$("#myDiv").show();
}
$('#myDiv').animate({width: targetWidth},duration,function(){
if($(this).css("width")=="0px"){
$(this).hide();
}
else{
$(this).show();
}
});
});
我修改了#myDiv
的CSS并添加了
overflow:hidden;
修改强>
我修改了“margin-left”属性而不是“width”属性
查看此jsFiddle
的更新版本$(".myButton").click(function () {
var effect = 'width';
var duration = 500;
//get the outer width of the div
var divOuterWidth= $("#myDiv").outerWidth();
divOuterWidth+= 8; //the margin on the body element
var targetMargin = $('#myDiv').css("margin-left")==((-divOuterWidth)+"px")?"0px":(-divOuterWidth)+"px";
$('#myDiv').animate({marginLeft: targetMargin},duration);
});