浏览代码

use inline css for console

Gregg Tavares 7 年之前
父节点
当前提交
dec477015c
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      threejs/resources/threejs-lessons-helper.js

+ 11 - 0
threejs/resources/threejs-lessons-helper.js

@@ -118,6 +118,17 @@
   function setupConsole() {
     var parent = document.createElement("div");
     parent.className = "console";
+    Object.assign(parent.style, {
+      fontFamily: 'monospace',
+      fontSize: 'medium',
+      maxHeight: '50%',
+      position: 'fixed',
+      bottom: 0,
+      left: 0,
+      width: '100%',
+      overflow: 'auto',
+      background: '#DDD',
+    });
     var numLinesRemaining = 100;
     var added = false;