📄 splitscreen.js
字号:
function SplitScreen (nonScrollingRegionId, scrollingRegionId) {
// store references to the two regions
this.nonScrollingRegion = document.getElementById(nonScrollingRegionId);
this.scrollingRegion = document.getElementById(scrollingRegionId);
// set the position model for each region
this.nonScrollingRegion.style.position = "fixed";
this.scrollingRegion.style.position = "absolute";
// fix the size of the scrolling region
this.resize(null);
// add an event handler to resize the scrolling region when the window is resized
registerEventHandler(window, 'resize', getInstanceDelegate(this, "resize"));
}
SplitScreen.prototype.resize = function(e) {
// update the vertical offset of the scrolling region to account for the height of the non-scrolling region
this.scrollingRegion.style.top = this.nonScrollingRegion.offsetHeight + "px";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -