Jump to content
  • 0

Можно ли затемнить ВСЕ родительские блоки?


d0ublezer0
 Share

Question

Вот скажите пожалуйста, возможно ли такое, если блок внутри родителя (ну и родителей, естественно): при выпадении меню по наведении, всё что под ним - затенять?

https://road.media/

Наведя на каталог, хочу добиться, чтобы всё что вокруг "выпадайки" затенилось.

Это возможно? Если пытаться через opacity для родителей, то затеняется всё вместе с ребенком, что логично.

Есть мысль с абсолютным блоком под выпадайкой, но выше родителей, но как его вызвать и позиционировать не додумаюсь что-то. Направьте?

Типа того:

.page-wrap::before {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 3;
}

Но этот псевдоэлемент перекрывает само меню...

Edited by d0ublezer0
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Ну вот сделал так:

 

.menuline ul.menu-level1 .cat-toggler:hover{
    -moz-box-shadow: 0 0 0 5000px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 0 5000px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 0 5000px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 0 5000px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 5000px rgba(0, 0, 0, 0.05);
}

Спасибо, вопрос снят

Edited by d0ublezer0
Link to comment
Share on other sites

  • 0
10 часов назад, wwt сказал:

нельзя в CSS обращаться к родительским элементам (пока нельзя), используйте javascript

А как же этого не хватает... Вот прям жутко не хватает.

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