Jump to content
Fórum Script Brasil
  • 0

background-position não funciona no IE


Alex0007

Question

Olha só, tem o seguinte código:

<style type="text/css">
/* Abaixo é definido a largura e a posição inicial do background para cada item do menu */
#button1{
    width:102px;
    background-position:0px 0px;
}
#button2{
    width:115px;
    background-position:-102px 0px;

}
#button3{
    width:115px;
    background-position:-217px 0px;
}
/* E abaixo é definido a posição do background para cada item do menu, ao passar o mouse sobre eles */
#button1:hover{
    background-position:0px -280px;
}
#button2:hover{
    background-position:-103px -280px;
}
#button3:hover{
    background-position:-219px -280px;
}
/* E abaixo são os estilos comuns dos itens do menu, inclusive a imagem de background */
ul{
    margin:0px;
    padding:0px;
}
.item_menu{
    margin:0px;
    padding:0px;
    list-style:none;
    cursor:pointer;
    float:left;
    height:70px;
    background-image:url('sprite.jpg');
}
</style>

<ul>
    <li class="item_menu" id="button1"></li>
    <li class="item_menu" id="button2"></li>
    <li class="item_menu" id="button3"></li>
</ul>

Veja o exemplo online

é um botao que muda a posiçao do background ao passar o mouse em cima, ou clicar

o código ta funcionando no firefox, mais não funciona no IE

O estranho é que funciona nos dois navegadores nesse site "http://blog.idealmind.com.br/javascript/background-css-animado/"

Queria saber o que ta errado com o código

Edited by Alex0007
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

o problema está no hover que o ie não background position

ache um jeito de fazer o hover funcionar e seu problema se resolve

achei alguns artigos falando que puchar um arquivo htc em especifico faz o tal do hover funcionar no IE porem eu não consegui fazer funcionar

ai vai o link do artigo que tambem da o link pra baixar o arquivo

http://revolucao.etc.br/archives/falso-hov...plorer/#content

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.

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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...