19 lines
622 B
JavaScript
19 lines
622 B
JavaScript
муром.создатьЛевуюПравуюОбласти = function()
|
|
{
|
|
// Левая область.
|
|
var ло = document.createElement("div");
|
|
ло.id="левая-область";
|
|
ло.style.cssText =
|
|
"position: fixed; left: 0; top: 0; bottom: 0; width: 50%;";
|
|
document.body.appendChild(ло);
|
|
|
|
// Правая область.
|
|
var по = document.createElement("div");
|
|
по.id="правая-область";
|
|
по.style.cssText =
|
|
"position: fixed; right: 0; top: 0; bottom: 0; width: 50%;";
|
|
document.body.appendChild(по);
|
|
|
|
return [ло, по];
|
|
};
|