Лабораторная работа: Робота з випадаючими графічними меню

this.id = id;

this.x = x;

this.y = y;

this.width = width;

Кольора меню і елементів

this.overCol = overCol;

this.backCol = backCol;

this.borderCol = borderCol;

Головне меню та елементи. Індексація

this.parentMenu = null;

this.parentItem = null;

}

function Item(text, href, height, target) {

this.text = text;

this.href = href;

this.height = height;

this.target = target;

}

function startDL(id, x, y, width, height, vis, back, border, zIndex, extraProps) {

if (isDOM) {

str = '<div id="' + id + '" style="position: absolute; left: ' + x + '; top: ' + y +

'; width: ' + width + '; height: ' + height + '; visibility: ' + vis + '; ';

if (back) str += 'background: ' + back + '; ';

if (border) str += 'padding: 3px; border: 1px solid ' + border + '; ';

if (zIndex) str += 'z-index: ' + zIndex + '; ';

// Завершення декларації стилів

str += '" ';

}

if (isNS4) {

К-во Просмотров: 386
Бесплатно скачать Лабораторная работа: Робота з випадаючими графічними меню