我想在没有 JS 的情况下实现可调整大小的窗格,只使用CSS Grid layout。这可能吗?
例如,CodePen 的编辑器为其 HTML / CSS / JS 编辑器提供可调整大小的窗格。另外,请参阅下面的示例,它在纯 JS 中实现它(我似乎无法将 URL 添加到其中的 CodePen 示例,因此添加属性有点困难。代码来自http://codepen.io/声音/)。
let isResizing = false;
let $handler = document.getElementById('handler');
let $wrapper = document.getElementById('wrapper');
let $left = document.getElementById('left');
$handler.addEventListener('mousedown', function(e){
isResizing = true;
});
document.addEventListener('mousemove', function(e){
if( !isResizing ) return;
let newWidth = e.clientX - $wrapper.offsetLeft;
$left.style.width = newWidth + 'px';
});
document.addEventListener('mouseup', function(){
isResizing = false;
});
html,body{
height: 100%;
width: 100%;
margin: 0;
}
#app{
height: 100%;
/* max-width: 1400px; */
margin: 0 auto;
}
header{
background-color: #AAA;
height: 50px;
}
#wrapper{
margin: 0 auto;
height: calc(100% - 50px);
width: 100%;
background-color: #EEE;
display: flex;
}
#handler{
background-color: red;
width: 5px;
cursor: col-resize;
}
#left{
width: 200px;
}
#content{
width: 100%;
flex: 1;
}
/* ----------- */
#left{
background-color: yellow;
}
#content{
background-color: #232378;
}
<div id="app">
<header>head</header>
<div id="wrapper">
<aside id="left"></aside>
<div id="handler"></div>
<article id="content"></article>
</div>
</div>
PS 作为旁注,我通过添加和删除'mousemove'
,'mouseup'
事件重新实现了上面的例子,并且想知道这是否比使用布尔值isResizing
并保持事件侦听器始终存在“更好”(更高性能)......