Jump to content
  • 0

Скрипт скрытия блоков на MooTools


dropoff
 Share

Question

Приветствую ;)

Помогите решить задачку.

Есть простой скрипт

	$$('div.show-or-hide').setStyle('visibility','hidden');
$$('div.menu').each(function(rec) {
var controls = rec.getFirst('div.show-or-hide', 'div.show-or-hide2');
rec.addEvents({
mouseenter: function() { controls.fade('in') },
mouseleave: function() { controls.fade('out') }
});
});

Он скрывает блок с классом .show-or-hide в блоке .menu

Мне нужно добавить туда еще несколько классов, чтобы можно было прятать блоки в разных местах шаблона.

Но я не пойму как тут прописать другие классы.

Например

	$$('div.show-or-hide', 'div.show-or-hide2').setStyle('visibility','hidden');
$$('div.menu', 'div.menu2').each(function(rec) {
var controls = rec.getFirst('div.show-or-hide', 'div.show-or-hide2');
rec.addEvents({
mouseenter: function() { controls.fade('in') },
mouseleave: function() { controls.fade('out') }
});
});

Но так естественно не работает)

Подскажите пожалуйста, как правильно указывать тут классы.

Заранее спасибо. :)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

В мутулзе ничего не понимаю, вижу его первый раз в жизни, но предположу, что вот это ересь:

$$('div.show-or-hide', 'div.show-or-hide2').setStyle('visibility','hidden');

Правильно будет сделать так:

$$('div.show-or-hide').setStyle('visibility','hidden');
$$('div.show-or-hide2').setStyle('visibility','hidden');

Беглый просмотр доков по селекторам не подсказал мне возможности выбрать одним селектором два класса сразу, но, может, стоит посмотреть внимательнее и всё найдётся?

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