我正在制作一个圆形汉堡包菜单按钮,在悬停时动画,从中心开始生长,三个栏子div位于父div圆圈的中心。
父div具有固定的位置以启用"grow"效果。汉堡菜单上的三条线是绝对定位的。
当鼠标悬停时,所有通过过渡的动画都很好,除了三个子div从右下角和左上角跳跃。我试过调整边距,宽度/高度,和定位,但我卡住了。我错过了什么?
.circle-nav {
display: block;
position: fixed;
width: 44px;
height: 44px;
top: 35px;
left: 35px;
color: rgba(255, 255, 255, 0.8);
background-color: rgb(136, 35, 24);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.05);
-webkit-border-radius: 22px;
-moz-border-radius: 22px;
border-radius: 22px;
transition: width 300ms ease, height 300ms ease, transform 300ms ease, background 300ms ease, border-radius 300ms ease, box-shadow 300ms ease, top 300ms ease, left 300ms ease;
}
.circle-nav:hover {
width: 66px;
height: 66px;
top: 25px;
left: 25px;
background-color: rgb(187, 53, 39);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), 0 8px 6px rgba(0, 0, 0, 0.05);
-webkit-border-radius: 33px;
-moz-border-radius: 33px;
border-radius: 33px;
}
.top-bar,
.mid-bar,
.bot-bar {
width: 22px;
height: 2px;
position: absolute;
left: 11px;
background-color: #fff;
}
.top-bar {
top: 14px;
}
.mid-bar {
top: 21px;
}
.bot-bar {
top: 28px;
}
.circle-nav:hover .top-bar {
top: 24px;
}
.circle-nav:hover .mid-bar {
top: 31px;
}
.circle-nav:hover .bot-bar {
top: 38px;
}
.circle-nav:hover .top-bar,
.circle-nav:hover .mid-bar,
.circle-nav:hover .bot-bar {
left: 22px;
}
<div class="circle-nav">
<div class="top-bar"></div>
<div class="mid-bar"></div>
<div class="bot-bar"></div>
</div>
问题在于您正在转换容器的尺寸更改,但没有将等效的转换应用于条形条的位置更改。因此,条形图会根据悬停时容器的原始大小跳到它们的新位置(意思是,当top
和left
的值变大时,条形图会移到右下角),并在悬停时移到扩大后的容器内的原始位置(意思是,当top
和left
的值变小时,条形图会移到左上角)。在过渡结束时,由于容器从各个方向拉伸,这些条最终会移动到中心。
如果你添加一个相当于300ms的transition
到条形图,那么一切看起来都很好。
请注意,在栏的左侧位置仍然有一个小的跳跃,但这可以通过调整悬停时容器的left
位置来解决(就像我在代码片段中所做的那样)。
.circle-nav {
display: block;
position: fixed;
width: 44px;
height: 44px;
top: 35px;
left: 35px;
color: rgba(255, 255, 255, 0.8);
background-color: rgb(136, 35, 24);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.05);
-webkit-border-radius: 22px;
-moz-border-radius: 22px;
border-radius: 22px;
transition: width 300ms ease, height 300ms ease, transform 300ms ease, background 300ms ease, border-radius 300ms ease, box-shadow 300ms ease, top 300ms ease, left 300ms ease;
}
.circle-nav:hover {
width: 66px;
height: 66px;
top: 25px;
left: 24px; /* changed this to prevent the small adjustment during hover */
background-color: rgb(187, 53, 39);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), 0 8px 6px rgba(0, 0, 0, 0.05);
-webkit-border-radius: 33px;
-moz-border-radius: 33px;
border-radius: 33px;
}
.top-bar,
.mid-bar,
.bot-bar {
width: 22px;
height: 2px;
position: absolute;
left: 11px;
background-color: #fff;
transition: all 300ms ease; /* added this to prevent the jump */
}
.top-bar {
top: 14px;
}
.mid-bar {
top: 21px;
}
.bot-bar {
top: 28px;
}
.circle-nav:hover .top-bar {
top: 24px;
}
.circle-nav:hover .mid-bar {
top: 31px;
}
.circle-nav:hover .bot-bar {
top: 38px;
}
.circle-nav:hover .top-bar,
.circle-nav:hover .mid-bar,
.circle-nav:hover .bot-bar {
left: 22px;
}
<div class="circle-nav">
<div class="top-bar"></div>
<div class="mid-bar"></div>
<div class="bot-bar"></div>
</div>