我有一个div将在FF中悬停淡入淡出,但在IE7中它只是隐藏并显示没有动画.这是我的代码:
#nav-buttons { display:none; width:894px; position:relative; z-index:1000; } #left-button,#right-button { position:absolute; width:46px; height:76px; } #left-button { background:url("images/arrows.png") no-repeat scroll -88px -60px transparent; left:-46px; } #left-button:hover { background-position:-88px -260px; } #right-button { background:url("images/arrows.png") no-repeat scroll 3px -60px transparent; right:-43px; } #right-button:hover { background-position:4px -260px; } ---------- <div id="contents"> <div id="nav-buttons"> <a href="javascript:void(0)" id="left-button"></a> <a href="javascript:void(0)" id="right-button"></a> </div> other html.... </div> ---------- $(document).ready(function() { $("#contents").hover(function() { $("#nav-buttons").fadetoggle("slow"); }); });
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。