JS實現(xiàn)TITLE懸停長久顯示效果完整示例
本文實例講述了JS實現(xiàn)TITLE懸停長久顯示效果。分享給大家供大家參考,具體如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JS控制TITLE懸停效果</title> <script type="text/javascript"> /** * className 類名 * tagname HTML標(biāo)簽名,如div,td,ul等 * @return Array 所有class對應(yīng)標(biāo)簽對象組成的數(shù)組 * @example <div class="abc">abc</div> var abc = getClass('abc'); for(i=0;i<abc.length;i++){ abc[i].style.backgroundColor='red'; } */ function getClass(className,tagname) { //tagname默認(rèn)值為'*',不能直接寫成默認(rèn)參數(shù)方式getClass(className,tagname='*'),否則IE下報錯 if(typeof tagname == 'undefined') tagname = '*'; if(typeof(getElementsByClassName) == 'function') { return getElementsByClassName(className); }else { var tagname = document.getElementsByTagName(tagname); var tagnameAll = []; for(var i = 0; i < tagname.length; i++) { if(tagname[i].className == className) { tagnameAll[tagnameAll.length] = tagname[i]; } } return tagnameAll; } } /** * JS字符切割函數(shù) * @params string 原字符串 * @params words_per_line 每行顯示的字符數(shù) */ function split_str(string,words_per_line) { //空串,直接返回 if(typeof string == 'undefined' || string.length == 0) return ''; //單行字?jǐn)?shù)未設(shè)定,非數(shù)值,則取默認(rèn)值50 if(typeof words_per_line == 'undefined' || isNaN(words_per_line)){ words_per_line = 50; } //格式化成整形值 words_per_line = parseInt(words_per_line); //取出i=0時的字,避免for循環(huán)里換行時多次判斷i是否為0 var output_string = string.substring(0,1); //循環(huán)分隔字符串 for(var i=1;i<string.length;i++) { //如果當(dāng)前字符是每行顯示的字符數(shù)的倍數(shù),輸出換行 if(i%words_per_line == 0) { output_string += "<br/>"; } //每次拼入一個字符 output_string += string.substring(i,i+1); } return output_string; } /** * 鼠標(biāo)懸停顯示TITLE * @params obj 當(dāng)前懸停的標(biāo)簽 * */ function titleMouseOver(obj,event,words_per_line) { //無TITLE懸停,直接返回 if(typeof obj.title == 'undefined' || obj.title == '') return false; //不存在title_show標(biāo)簽則自動新建 var title_show = document.getElementById("title_show"); if(title_show == null){ title_show = document.createElement("div"); //新建Element document.getElementsByTagName('body')[0].appendChild(title_show); //加入body中 var attr_id = document.createAttribute('id'); //新建Element的id屬性 attr_id.nodeValue = 'title_show'; //為id屬性賦值 title_show.setAttributeNode(attr_id); //為Element設(shè)置id屬性 var attr_style = document.createAttribute('style'); //新建Element的style屬性 attr_style.nodeValue = 'position:absolute;' //絕對定位 +'border:solid 1px #999999; background:#EDEEF0;' //邊框、背景顏色 +'border-radius:2px;box-shadow:2px 3px #999999;' //圓角、陰影 +'line-height:18px;' //行間距 +'font-size:12px; padding: 2px 5px;'; //字體大小、內(nèi)間距 try{ title_show.setAttributeNode(attr_style); //為Element設(shè)置style屬性 }catch(e){ //IE6 title_show.style.position = 'absolute'; title_show.style.border = 'solid 1px #999999'; title_show.style.background = '#EDEEF0'; title_show.style.lineHeight = '18px'; title_show.style.fontSize = '18px'; title_show.style.padding = '2px 5px'; } } //存儲并刪除原TITLE document.title_value = obj.title; obj.title = ''; //單行字?jǐn)?shù)未設(shè)定,非數(shù)值,則取默認(rèn)值50 if(typeof words_per_line == 'undefined' || isNaN(words_per_line)){ words_per_line = 50; } //格式化成整形值 words_per_line = parseInt(words_per_line); //在title_show中按每行限定字?jǐn)?shù)顯示標(biāo)題內(nèi)容,模擬TITLE懸停效果 title_show.innerHTML = split_str(document.title_value,words_per_line); //顯示懸停效果DIV title_show.style.display = 'block'; //根據(jù)鼠標(biāo)位置設(shè)定懸停效果DIV位置 event = event || window.event; //鼠標(biāo)、鍵盤事件 var top_down = 15; //下移15px避免遮蓋當(dāng)前標(biāo)簽 //最左值為當(dāng)前鼠標(biāo)位置 與 body寬度減去懸停效果DIV寬度的最小值,否則將右端導(dǎo)致遮蓋 var left = Math.min(event.clientX,document.body.clientWidth-title_show.clientWidth); title_show.style.left = left+"px"; //設(shè)置title_show在頁面中的X軸位置。 title_show.style.top = (event.clientY + top_down)+"px"; //設(shè)置title_show在頁面中的Y軸位置。 } /** * 鼠標(biāo)離開隱藏TITLE * @params obj 當(dāng)前懸停的標(biāo)簽 * */ function titleMouseOut(obj) { var title_show = document.getElementById("title_show"); //不存在懸停效果,直接返回 if(title_show == null) return false; //存在懸停效果,恢復(fù)原TITLE obj.title = document.title_value; //隱藏懸停效果DIV title_show.style.display = "none"; } /** * 懸停事件綁定 * @params objs 所有需要綁定事件的Element * */ function attachEvent(objs,words_per_line){ if(typeof objs != 'object') return false; //單行字?jǐn)?shù)未設(shè)定,非數(shù)值,則取默認(rèn)值50 if(typeof words_per_line == 'undefined' || isNaN(words_per_line)){ words_per_line = 50; } for(i=0;i<objs.length;i++){ objs[i].onmouseover = function(event){ titleMouseOver(this,event,words_per_line); } objs[i].onmouseout = function(event){ titleMouseOut(this); } } } //初始化,當(dāng)頁面onload的時候,對所有class="title_hover"的標(biāo)簽綁定TITLE懸停事件 window.onload = function(){ attachEvent(getClass('title_hover'),18); //行字?jǐn)?shù)設(shè)定為18 } </script> </head> <body> <style> tr{float:left; margin:0 50px;} </style> <table> <tr> <td title="這個是默認(rèn)的TITLE這個是默認(rèn)的TITLE這個是默認(rèn)的TITLE這個是默認(rèn)的TITLE這個是默認(rèn)的TITLE這個是默認(rèn)的TITLE">鼠標(biāo)懸停[原生版本]</td> </tr> <tr> <td title="這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE" οnmοuseοver="titleMouseOver(this,event,15);" οnmοuseοut="titleMouseOut(this);">鼠標(biāo)懸停[直接調(diào)用函數(shù)版本,設(shè)定行字?jǐn)?shù)]</td> </tr> <tr> <td class="title_hover" title="ABCTesterABCTesterABCTesterABCTesterABCTesterABCTesterABCTester">鼠標(biāo)懸停[class控制版本]</td> </tr> <tr> <td title="這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE這個是JS實現(xiàn)懸停的TITLE" οnmοuseοver="titleMouseOver(this,event);" οnmοuseοut="titleMouseOut(this);">鼠標(biāo)懸停[直接調(diào)用函數(shù)版本,默認(rèn)行字?jǐn)?shù)]</td> </tr> </table> </body> </html>
感興趣的朋友可以使用在線HTML/CSS/JavaScript代碼運行工具:http://tools.jb51.net/code/HtmlJsRun測試一下運行效果。
更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript頁面元素操作技巧總結(jié)》、《JavaScript操作DOM技巧總結(jié)》、《JavaScript切換特效與技巧總結(jié)》、《JavaScript動畫特效與技巧匯總》、《JavaScript錯誤與調(diào)試技巧總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》及《JavaScript數(shù)學(xué)運算用法總結(jié)》
希望本文所述對大家JavaScript程序設(shè)計有所幫助。
- js實現(xiàn)動畫特效的文字鏈接鼠標(biāo)懸停提示的方法
- jQuery懸停文字提示框插件jquery.tooltipster.js用法示例【附demo源碼下載】
- js 文字超出長度用省略號代替,鼠標(biāo)懸停并以懸浮框顯示實例
- js實現(xiàn)鼠標(biāo)懸停圖片上時滾動文字說明的方法
- js實現(xiàn)文字垂直滾動和鼠標(biāo)懸停效果
- 基于JS代碼實現(xiàn)當(dāng)鼠標(biāo)懸停表格上顯示這一格的全部內(nèi)容
- Javascript仿新浪游戲頻道鼠標(biāo)懸停顯示子菜單效果
- CSS或者JS實現(xiàn)鼠標(biāo)懸停顯示另一元素
- JS實現(xiàn)title標(biāo)題欄文字不間斷滾動顯示效果
- js鼠標(biāo)移動在title中顯示圖片的效果代碼
- 一個JS函數(shù)搞定網(wǎng)頁標(biāo)題(title)閃動效果
- js下用層來實現(xiàn)select的title提示屬性
相關(guān)文章
select每選擇一個option選項減少對應(yīng)的option實現(xiàn)方法
這篇文章主要為大家介紹了select每選擇一個option選項減少對應(yīng)的option實現(xiàn)方法,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-12-12JS中‘hello’與new String(‘hello’)引出的問題詳解
這篇文章主要給大家介紹了關(guān)于JS中'hello'與new String('hello')引出的問題的相關(guān)資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考借鑒,下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-08-08淺談async、defer以普通script加載的區(qū)別
本文主要介紹了淺談async、defer以普通script加載的區(qū)別,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-05-05?javascript數(shù)組中的lastIndexOf方法
這篇文章主要介紹了?javascript數(shù)組中的lastIndexOf方法,該方法可返回一個指定的字符串值最后出現(xiàn)的位置,在一個字符串中的指定位置從后向前搜索,下文詳細內(nèi)容需要的小伙伴可以參考一下2022-03-03javascript函數(shù)中參數(shù)傳遞問題示例探討
本節(jié)主要與大家探討下javascript函數(shù)中參數(shù)傳遞問題,有不明白的朋友可以參考下2014-07-07