МУРОМ является долговечным игровым редактором, работающим в браузере | MUROM is a durable game editor working in a browser http://opengamestudio.org/murom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
622B

  1. муром.создатьЛевуюПравуюОбласти = function()
  2. {
  3. // Левая область.
  4. var ло = document.createElement("div");
  5. ло.id="левая-область";
  6. ло.style.cssText =
  7. "position: fixed; left: 0; top: 0; bottom: 0; width: 50%;";
  8. document.body.appendChild(ло);
  9. // Правая область.
  10. var по = document.createElement("div");
  11. по.id="правая-область";
  12. по.style.cssText =
  13. "position: fixed; right: 0; top: 0; bottom: 0; width: 50%;";
  14. document.body.appendChild(по);
  15. return [ло, по];
  16. };