我正在尝试将侧边栏隐藏到负右侧(-205px),这样我就可以获得内容包装器和侧边栏同时移动的效果。
问题是侧边栏仍然显示在右侧?我虽然可以隐藏它在网页外“发送”。 我不能简单地在侧边栏上使用display block none和block,因为它不能制作流畅的动画
var rightSidebarOpen = false;
$('#toggle-right-sidebar').click(function () {
if(rightSidebarOpen) {
$('#sidebar-right').css('right', '-205px');
$('.content-wrapper').css('margin-right', "0");
$('.full-page-wrapper').css('margin-right', "0");
}
else {
$('#sidebar-right').css('right', '0');
$('.content-wrapper').css('margin-right', "205px");
$('.full-page-wrapper').css('margin-right', "205px");
}
rightSidebarOpen = !rightSidebarOpen;
});
.content-wrapper {
background: #fff;
min-height: 100vh;
padding: 1rem 1.5rem 4rem;
transition: all .7s ease;
position: relative;
background: black;
}
#sidebar-right {
background: #fafafa;
border-left: 1px solid #e5e5e5;
width: 200px;
height: 100%;
position: absolute;
top: 0;
right: -205px;
overflow-x: hidden;
transition: left 1s ease;
background: red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="sidebar-right" class="visible">
<ul class="sidebarList">
<li>
</li>
</ul>
</div>
<div class="content-wrapper">
<button id="toggle-right-sidebar">CLICK ME</button>
</div>
答案 0 :(得分:1)
您需要转换侧边栏上的right
CSS属性,因为这是您正在更改的属性。
#sidebar-right {
transition: right 1s ease;
}
答案 1 :(得分:1)
为#sidebar-right
和.content-wrapper
添加正确的转换类型,可以解决您的问题。试试这段代码。
.content-wrapper {
background: #fff;
min-height: 100vh;
padding: 1rem 1.5rem 4rem;
transition: all .7s ease;
position: relative;
background: black;
}
#sidebar-right {
background: #fafafa;
border-left: 1px solid #e5e5e5;
width: 200px;
height: 100%;
position: absolute;
top: 0;
right: -205px;
overflow-x: hidden;
background: red;
transition: all 0.7s ease;
}
答案 2 :(得分:1)
#sidebar-right {
transition: all 1s ease;
}
&#39;所有&#39;允许在所有属性上使用转换
答案 3 :(得分:1)
将overflow-x:hidden
添加到外部容器