Jump to content
  • 0

Не срабатывает hover при использовании в div


AlexMak
 Share

Question

Делаю так, что при наведении на определенный div меняется его отображении. Все браузеры, кроме IE 6.0 отлично это понимают, но эксплорер то ли не поддерживает это свойство, то ли я что-то неправильно делаю, пишу в css просто .class1:hover{background-image:url(class1.jpg);}

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

зачем...

у вас было например

<div class=dd>щас вспыхнет</div>

<style>

div.dd {background:#fff;height:200xp; width:300px;}

div.dd:hover {background:#000;} // будет работать только в ff3, opera 9.6

</style>

но мы обойдем это дело, задав тегу "а" свойства блочного элемента...

<a href class=dd>щас вспыхнет</a>

<style>

a.dd {display:block;background:#fff;height:200xp; width:300px;}

a.dd:hover {background:#000;} // будет работать везде и даже в ie6

</style>

Link to comment
Share on other sites

  • 0

<script type="text/javascript">

jsHover = function() {

var hEls = document.getElementById("Идентификатор пределах которого надо научить делать hover").getElementsByTagName("нужный тег (для тебя div)");

for (var i=0, len=hEls.length; i<len; i++) {

hEls.onmouseover=function() { this.className+=" jshover"; }

hEls.onmouseout=function() { this.className=this.className.replace(" jshover", ""); }

}

}

if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);

</script>

это в head

а вот так надо в стилях прописать

div:hover, div.jshover{что-то там}

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