请问那个黑边框是什么原因造成的???IE8浏览有黑边框,google浏览器正常
回复讨论(解决方案)
你用的背景图片是png吧。。
然后还给这2个按钮设了透明度吧。。。。
请LZ贴代码
首页代码[one_third][box]
把那2个箭头的透明度去掉
在IE下PNG图片再加透明度就会导致这样的情况。
这样怎么删除啊jQuery('#cycle-prev, #cycle-next').css({opacity: '0'});jQuery('.cycleslider-wrap').hover(function(){jQuery('#cycle-prev',this).stop().animate({left: '-31', opacity: '1'},200,'easeOutCubic');jQuery('#cycle-next',this).stop().animate({right: '-31', opacity: '1'},200,'easeOutCubic'); }, function() {jQuery('#cycle-prev',this).stop().animate({left: '-50', opacity: '0'},400,'easeInCubic');jQuery('#cycle-next',this).stop().animate({right: '-50', opacity: '0'},400,'easeInCubic');});
这样怎么删除啊jQuery('#cycle-prev, #cycle-next').css({opacity: '0'});jQuery('.cycleslider-wrap').hover(function(){jQuery('#cycle-prev',this).stop().animate({left: '-31', opacity: '1'},200,'easeOutCubic');jQuery('#cycle-next',this).stop().animate({right: '-31', opacity: '1'},200,'easeOutCubic'); }, function() {jQuery('#cycle-prev',this).stop().animate({left: '-50', opacity: '0'},400,'easeInCubic');jQuery('#cycle-next',this).stop().animate({right: '-50', opacity: '0'},400,'easeInCubic');});
大爷,删个透明度也不会么??不要操作opaciry属性啊!
。。。。改成非png的图片 咱不要透明背景了 弄个正方形的 箭头把
声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理