Jump to content
  • 0

Разные кликабельные области у логотипа


Eirene
 Share

Question

Задача:

Есть логотип, часть его (дерево в кружочке) должно вести по ссылке, напр.на Главную,

при клике на остальную же часть нужно чтобы появлялось верхнее окошко.

f1c7304c6fect.jpg

Пока дошла до того, что внутри ссылки сделала область конкретно для дерева в круге:

<p class="logo"><a href="#">Mounthermon</a></p>

.header p.logo{
float:left;
width:239px;
height:106px;
text-indent:-900em;
margin-top:-20px;
background: url(../images/logo.png) no-repeat left top;
position:relative;
cursor:pointer;
}

.header p.logo a{
display:block;
border-radius:27px;
height: 52px;
left: 8px;
position: absolute;
top: 19px;
width: 53px;
}

Написала:

$(document).ready(function(){
$('p.logo').not('p.logo a').click(function(){
$('.top-grey-block').slideToggle();
});
});

Но, естественно оно реагирует на нажатие по дереву, оно ведь в области p.logo находится...

Как их сделать разнокликабельными?

Посмотреть страничку можно тут

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Почему неудобный?

Надо менять верстку ((

В дальнейшем мне таким же образом нужно будет исключить область верхнего меню и поиска, но оставить всю остальную серо-зеленую область кликабельной.

Думала может как-то на jQuery можно сделать эти исключения.

Link to comment
Share on other sites

  • 0

Попробуйте использовать делегирование, но не уверена правильно ли смешивать ЖС и Жквери.

var logo = document.querySelector('.logo');

logo.onclick = function(e) {
e = e || window.event;
var target = e.target || e.srcElement;

if (target.nodeName == 'A') return;
else{
$('.top-grey-block').slideToggle(); // *
}

}

Вроде работает...

Edited by amelice
Link to comment
Share on other sites

  • 0

>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