- 相關(guān)推薦
web中自定義鼠標(biāo)樣式
最近寫項(xiàng)目需要實(shí)現(xiàn)一個(gè)功能:鼠標(biāo)移動(dòng)到一個(gè)圖片左邊顯示左箭頭,移動(dòng)到右邊顯示右箭頭。
實(shí)現(xiàn)方法:一個(gè)img上面定位兩個(gè)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 加了個(gè)background-color:#fff; 嘿,居然可以了。
最后再把div的透明度設(shè)為0就ok了。
【web中自定義鼠標(biāo)樣式】相關(guān)文章:
CAD中怎么設(shè)置標(biāo)注樣式與比例07-17
web項(xiàng)目總結(jié)11-22
web網(wǎng)站實(shí)訓(xùn)報(bào)告01-19
web前端工作總結(jié)12-16
web前端實(shí)習(xí)報(bào)告范文09-19
簡歷模型的Web前端開發(fā)03-17