0
如何使一個固定的三角形div保存文本和圖像?做一個三角形div來保持文本並關閉懸停出
另外我做的是this但在這裏,當div懸停打開時,並且當我懸停時,它不會關閉,因爲div是方形的,所以我需要這麼做的時候用戶盤旋出來,div應該關閉?
jQuery將被罰款過
CSS
.map {
background-color: transparent;
position: absolute;
border-top: 0px;
border-right: 500px solid transparent;
border-left: 0;
border-bottom: 500px solid #ff0000;
width: 0;
position: fixed;
bottom: -440px;
}
.map:hover {
bottom: 0px;
}
這已經是這樣的情況了:當鼠標關閉div時。問題是你想要的是當鼠標光標不在紅色區域時觸發鼠標移出。看到類似的話題:http://stackoverflow.com/questions/14315795/modiying-cursor-property-for-select-portion-of-an-element/ –