重寫滑鼠懸停事件(針對IE)

2021-08-04 03:00:19 字數 1309 閱讀 2579

在ie下,滑鼠懸停只是幾秒,解決內容過多時完整檢視

例如

class='containt'>

class='title_show'

style='position: absolute;padding:10px; display:none;background:#edeef0; border: solid 1px #999999;border-radius:5px; z-index:9999'>

span>

title='this is title'

clss='mydiv'>

div>

div>

js事件

$(".mydiv").on("mouseover",this.proxy(this.title_show)).on("mouout",this.proxy(this.title_hide));

/*** 滑鼠懸停事件處理

*/title_show:function

(e);

//獲取當前的y座標值

function

pagey

(elem);

function

split_str

(string,words_per_line)

output_string += string.substring(i,i+1);

}

return output_string;

};this.title_value = '';

var span=e.target;

var div=$(".title_show")[0];

this.title_value = span.title;

div.style.left = pagex(span)+50+'px';

div.style.top = pagey(span)-230+'px';

var words_per_line = 40; //每行字數

var title = split_str(span.title,words_per_line); //按每行25個字顯示標題內容。

div.innerhtml = title;

div.style.display = '';

span.title = ''; //去掉原有title顯示。

},title_hide:function

(e)

this.proxy是this物件的轉移

seleium 滑鼠懸停事件

seleium 教程 seleium官網 1 滑鼠懸停 例如,下圖 滑鼠懸停到 個人中心 滑鼠移動到 退出 引入from selenium.webdriver.common.action chains import actionchains 定位個人中心 personal self.driver.f...

IE6滑鼠懸停Bug

當滑鼠放置於某個文字鏈結之上,文字或文字背景改變為其他顏色或樣式的效果是我們最經常見到的滑鼠懸停效果。在css中,這個效果靠偽元素 hover來實現,只不過在文字鏈結中 hover被應用在了錨點元素上。實際上,在css2中,hover偽元素可以應用於任何html元素上。比如,1 p hover 這一...

Unity 滑鼠懸停

程式實現效果 using unityengine.eventsystems void update mouse hover exit null void start private void windowctrl click 滑鼠懸停進入 eventtrigger.entry hoveronentr...