帝王谷资源网 Design By www.wdxyy.com
最近写项目需要实现一个功能:鼠标移动到一个图片左边显示左箭头,移动到右边显示右箭头。

实现方法:一个img上面定位两个div,div的样式如下:

复制代码代码如下:
.toleft
{
width: 200px;
height: 300px;
position: absolute;
left: 0px;
top: 0px;
cursor: url(../images/test/cursor_left.cur), default;
}
.toright
{
width: 200px;
height: 300px;
position: absolute;
left: 200px;
top: 0px;
cursor: url(../images/test/cursor_right.cur), default;
}

其他浏览器还好,可就是ie里面不行。

后来试了几种方法:

1.给 img 加 z-idnex:1 ; 给 div 加 z-index:2 //不行

2.把 div 的 position:absolute 去掉,加上float:left; //不行

无奈,后来给 div 加了个background-color:#fff; 嘿,居然可以了。

最后再把div的透明度设为0就ok了。
标签:
鼠标样式,箭头

帝王谷资源网 Design By www.wdxyy.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
帝王谷资源网 Design By www.wdxyy.com