문제

I am new to css3 transitions so the fix is probably easy for you. I am busy with a new website where i want to rotate some images. In a new html document it works, but when i try to implement it to my website it does nothing. www.jsfiddle.net/NXRvB/

도움이 되었습니까?

해결책

You have a negative z-index on #circelwrap which will prevent your :hover because you are moving the element behind its container.

#circelwrap {

    z-index: -1;
}

remove this and it works.

DEMO

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top