默认的cubism.js规则仅涵盖当前浏览器。向下滚动浏览器后,规则(行)结束。无论如何,除了诉诸javascript之外还要扩展它?
答案 0 :(得分:0)
在cubism.js中使用以下内容来控制线条的样式(规则)
function cubism_ruleStyle(line) {
line
.style("position", "absolute")
.style("top", 0)
.style("bottom", 0)
.style("width", "1px")
.style("pointer-events", "none");
}
现在将“绝对”更改为“已修复”,即使在向下滚动屏幕后,我也会在屏幕上显示该行。感谢tanya提出的类似问题center div in the middle of the screen - even when page is scrolled up/down