Jump to content
  • 0

Помогите оптимизировать скрипт, плз


IvFeo
 Share

Question

Добрый день всем!

Помогите мне пожалуйста. туплю.

Есть html код :

<ul>

<li class="event1">

<div class="about1" style="display:none">

<p>05.02.2012</p>

<a href="#">Оформление вашей свадьбы</a>

</div>

</li>

.

.

.

.

</ul>

Что нужно: Чтобы при наведении мыши на li внутренний div появлялся. Пунктов списка много. Соответственно, нужно чтобы работало на всех.

$('.event1').hover(

function(){

$('.about1').fadeIn();

},

function(){

$('.about1').fadeOut();

}

);

Это конечно работает, но... Видимо надо что-то типа $("li > div").parent().fadeIn(); но как-то не вышло.

Заранее спасибо!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Оно работает при указании конкретного пункта и конкретного дива.

Объясню:

При наведении мышки на <li class="event"> должен появляться вложенный div (а <li> много). Блин, задачка-то элементарная, а не получается. То все сразу появляются, то ни одного.

Link to comment
Share on other sites

  • 0

Может так, не?


$(function(){
$('.event').on({
mouseenter : function(){
$('.about', this).stop(true, true).fadeIn().animate({left:30}, {queue : false, duration : 500});
},
mouseleave : function(){
$('.about', this).fadeOut().animate({left:15}, {queue : false, duration : 500});
}
});
})?;?

По сути почти тоже самое, что и Great Rash написал. Работает.

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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