Jump to content

Lemmon

Newbie
  • Posts

    2
  • Joined

  • Last visited

Lemmon's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Автор-то может быть и знает... Только гдеж его взять, чтоб спросить...
  2. Я совсем начинающий.. Есть шаблон, в нем горизонтальное меню с выпадающими элементами. Но есть одна вещь, которая раздражает - стоит провести мышкой, все простынки выскакивают. Нужно установить задержку при наведении мышки на элемент меню. Вот код: <script type="text/javascript"> var LeJq = { animateduration: { over: 300, out: 300 }, buildmenu: function (a, { jQuery(document).ready(function ( { var c = b("#" + a + ">ul"); var d = c.find("ul").parent(); d.each(function (a) { var c = b(this); var d = b(this).find("ul:eq(0)"); this._dimensions = { w: this.offsetWidth, h: this.offsetHeight, subulw: d.outerWidth(), subulh: d.outerHeight() }; this.istopheader = c.parents("ul").length == 1 ? true : false; d.css({ top: 29 + "px" }); c.hover(function (a) { var c = b(this).children("ul:eq(0)"); this._offsets = { left: b(this).offset().left, top: b(this).offset().top }; var d = this.istopheader ? 0 : this._dimensions.w; d = this._offsets.left + d + this._dimensions.subulw > b(window).width() ? this.istopheader ? -this._dimensions.subulw + this._dimensions.w : -this._dimensions.w : d; if (c.queue().length <= 1) c.css({ left: d + "px", width: this._dimensions.subulw + "px" }).slideDown(LeJq.animateduration.over) }, function (a) { var c = b(this).children("ul:eq(0)"); c.slideUp(LeJq.animateduration.out) }); c.click(function () { b(this).children("ul:eq(0)").hide() }) }); c.find("ul").css({ display: "none", visibility: "visible" }) }) } }; LeJq.buildmenu("class_menu") </script> Вопрос: Куда и как вставить setTimeout (я так понимаю). Просьба при ответе учитывать, что перед вами совсем начинающий ))
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy