我试图让多边形与兄弟div一起动画。我认为它不是动画,因为它绝对定位?有没有办法让它与兄弟div一起滑动?
这是一个小提琴:http://jsfiddle.net/Lzxmk5jp/2/
jQuery的:
$('.one').on('click',function(){
var width = $('.one').width(),
parentWidth = $('.one').offsetParent().width(),
percent = 100*width/parentWidth;
if(percent < '34'){
$('.one').animate({
width:'66%'
}, 1000),
$('.one .svg-right-arrow').animate({
left:'100%'
}, 1000)
}
if(percent > '34'){
$('.one').animate({
width:'34%'
}, 1000),
$('.one .svg-right-arrow').animate({
left:'100%'
}, 1000)
}
});
HTML:
<div class="cont">
<div class="one">
<div class="one-inner"></div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="svg-right-arrow" viewBox="0 0 20 152" preserveAspectRatio="xMinYMid meet">
<polygon points="0,0 0,152 20,76"></polygon>
</svg>
</div>
</div>
答案 0 :(得分:1)
这与他们一起移动无关,您的箭头位于您的框外,当您使用.animate()
时,它会在转换过程中隐藏溢出内容。您可以使.one-inner
背景颜色减小宽度,并将箭头保持在框内以使其一起移动(注意您必须使用间距来使其看起来更好,我的是一个解释行为的简单例子:
.one-inner{
background-color:#ed7581;
width:75%;
height:370px;
}
.one .svg-right-arrow{
position: absolute;
left: 74%;
top:0;
z-index: 10;
height:100%;
}
答案 1 :(得分:0)
我错误地认为这是一个position:absolute
问题。问题是overflow:hidden
,所以这就是我想要的,将.css('overflow','visible');
添加到动画的结尾:
jQuery的:
$('.one').on('click',function(){
var width = $('.one').width(),
parentWidth = $('.one').offsetParent().width(),
percent = 100*width/parentWidth;
if(percent < '34'){
$('.one').animate({
width:'66%'
}, 1000).css('overflow','visible');
}
if(percent > '34'){
$('.one').animate({
width:'34%'
}, 1000).css('overflow','visible');
}
});
这是一个小提琴:http://jsfiddle.net/Lzxmk5jp/7/