⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wz_tooltip.js

📁 掌握学习.net开发的非常好的资料
💻 JS
📖 第 1 页 / 共 2 页
字号:
/* This notice must be untouched at all times.wz_tooltip.js    v. 3.26The latest version is available athttp://www.walterzorn.comor http://www.devira.comor http://www.walterzorn.deCopyright (c) 2002-2004 Walter Zorn. All rights reserved.Created 1. 12. 2002 by Walter Zorn (Web: http://www.walterzorn.com )Last modified: 10. 10. 2004Cross-browser tooltips working even in Opera 5 and 6,as well as in NN 4, Gecko-Browsers, IE4+, Opera 7 and Konqueror.No onmouseouts required.Appearance of tooltips can be individually configuredvia commands within the onmouseovers.LICENSE: LGPLThis library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense (LGPL) as published by the Free Software Foundation; eitherversion 2.1 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.For more details on the GNU Lesser General Public License,see http://www.gnu.org/copyleft/lesser.html*/////////////////  GLOBAL TOOPTIP CONFIGURATION  /////////////////////var ttBgColor      = "#e6ecff";var ttBgImg        = "";           // path to background image;var ttBorderColor  = "#003399";var ttBorderWidth  = 1;var ttDelay        = 500;          // time span until tooltip shows up [milliseconds]var ttFontColor    = "#000066";var ttFontFace     = "arial,helvetica,sans-serif";var ttFontSize     = "11px";var ttFontWeight   = "normal";     // alternative is "bold";var ttOffsetX      = 8;            // horizontal offset of left-top corner from mousepointervar ttOffsetY      = 19;           // vertical offset                   "var ttPadding      = 3;            // spacing between border and contentvar ttShadowColor  = "";var ttShadowWidth  = 0;var ttTemp         = 0;            // time span after which the tooltip disappears; 0 (zero) means "infinite timespan"var ttTitleColor   = "#ffffff";    // color of caption textvar ttWidth        = 300;////////////////////  END OF TOOLTIP CONFIG  //////////////////////////////////////  TAGS WITH TOOLTIP FUNCTIONALITY  ////////////////////// List may be extended or shortened:var tt_tags = new Array("a","area","b","big","caption","center","code","dd","div","dl","dt","em","h1","h2","h3","h4","h5","h6","i","img","input","li","map","ol","p","pre","s","small","span","strike","strong","sub","sup","table","td","th","tr","tt","u","var","ul","layer");////////////////////////////////////////////////////////////////////////////// DON'T CHANGE ANYTHING BELOW THIS LINE /////////////////////var tt_obj,                // current tooltiptt_objW = 0, tt_objH = 0,  // width and height of tt_objtt_objX = 0, tt_objY = 0,tt_offX = 0, tt_offY = 0,xlim = 0, ylim = 0,        // right and bottom borders of visible client areatt_above = false,          // true if T_ABOVE cmdtt_sticky = false,         // tt_obj sticky?tt_wait = false,tt_vis = false,            // tooltip visibility flagtt_dwn = false,            // true while tooltip below mousepointertt_u = "undefined",tt_inputs = new Array();   // drop-down-boxes to be hidden in IEvar tt_db = (document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body? document.body : null,tt_n = navigator.userAgent.toLowerCase();// Browser flagsvar tt_op = !!(window.opera && document.getElementById),tt_op6 = tt_op && !document.defaultView,tt_ie = tt_n.indexOf("msie") != -1 && document.all && tt_db && !tt_op,tt_n4 = (document.layers && typeof document.classes != "undefined"),tt_n6 = (!tt_op && document.defaultView && typeof document.defaultView.getComputedStyle != "undefined"),tt_w3c = !tt_ie && !tt_n6 && !tt_op && document.getElementById;tt_n = "";function tt_Int(t_x){	var t_y;	return isNaN(t_y = parseInt(t_x))? 0 : t_y;}function wzReplace(t_x, t_y){	var t_ret = "",	t_str = this,	t_xI;	while ((t_xI = t_str.indexOf(t_x)) != -1)	{		t_ret += t_str.substring(0, t_xI) + t_y;		t_str = t_str.substring(t_xI + t_x.length);	}	return t_ret+t_str;}String.prototype.wzReplace = wzReplace;function tt_N4Tags(tagtyp, t_d, t_y){	t_d = t_d || document;	t_y = t_y || new Array();	var t_x = (tagtyp=="a")? t_d.links : t_d.layers;	for (var z = t_x.length; z--;) t_y[t_y.length] = t_x[z];	for (var z = t_d.layers.length; z--;) t_y = tt_N4Tags(tagtyp, t_d.layers[z].document, t_y);	return t_y;}function tt_GetSelects(){	if (!tt_op6 && !tt_ie) return;	var t_s = tt_op6? "input" : "select";	if (document.all)	{		var t_i = document.all.tags(t_s).length; while (t_i--)			tt_inputs[t_i] = document.all.tags(t_s)[t_i];	}	else if (document.getElementsByTagName)	{		var t_i = document.getElementsByTagName(t_s).length; while (t_i--)			tt_inputs[t_i] = document.getElementsByTagName(t_s)[t_i];	}	var t_i = tt_inputs.length; while (t_i--)	{		tt_inputs[t_i].x = 0;		tt_inputs[t_i].y = 0;		var t_o = tt_inputs[t_i];		while (t_o)		{			tt_inputs[t_i].x += t_o.offsetLeft || 0;			tt_inputs[t_i].y += t_o.offsetTop|| 0;			t_o = t_o.offsetParent;		}	}}function tt_Htm(tt, t_id, txt){	var t_bgc = (typeof tt.T_BGCOLOR != tt_u)? tt.T_BGCOLOR : ttBgColor,	t_bgimg   = (typeof tt.T_BGIMG != tt_u)? tt.T_BGIMG : ttBgImg,	t_bc      = (typeof tt.T_BORDERCOLOR != tt_u)? tt.T_BORDERCOLOR : ttBorderColor,	t_bw      = (typeof tt.T_BORDERWIDTH != tt_u)? tt.T_BORDERWIDTH : ttBorderWidth,	t_ff      = (typeof tt.T_FONTFACE != tt_u)? tt.T_FONTFACE : ttFontFace,	t_fc      = (typeof tt.T_FONTCOLOR != tt_u)? tt.T_FONTCOLOR : ttFontColor,	t_fsz     = (typeof tt.T_FONTSIZE != tt_u)? tt.T_FONTSIZE : ttFontSize,	t_fwght   = (typeof tt.T_FONTWEIGHT != tt_u)? tt.T_FONTWEIGHT : ttFontWeight,	t_padd    = (typeof tt.T_PADDING != tt_u)? tt.T_PADDING : ttPadding,	t_shc     = (typeof tt.T_SHADOWCOLOR != tt_u)? tt.T_SHADOWCOLOR : (ttShadowColor || 0),	t_shw     = (typeof tt.T_SHADOWWIDTH != tt_u)? tt.T_SHADOWWIDTH : (ttShadowWidth || 0),	t_tit     = (typeof tt.T_TITLE != tt_u)? tt.T_TITLE : "",	t_titc    = (typeof tt.T_TITLECOLOR != tt_u)? tt.T_TITLECOLOR : ttTitleColor,	t_w       = (typeof tt.T_WIDTH != tt_u)? tt.T_WIDTH  : ttWidth;	if (t_shc || t_shw)	{		t_shc = t_shc || "#cccccc";		t_shw = t_shw || 3;	}	if (tt_n4 && (t_fsz == "10px" || t_fsz == "11px")) t_fsz = "12px";	var t_y = '<div id="' + t_id + '" style="position:absolute;z-index:1010;';	t_y += 'left:0px;top:0px;width:' + (t_w+t_shw) + 'px;visibility:' + (tt_n4? 'hide' : 'hidden') + ';">';	t_y += '<table border="0" cellpadding="0" cellspacing="0"' + (t_bc? (' bgcolor="' + t_bc + '"') : '') + ' width="' + t_w + '">';	if (t_tit)	{		t_y += '<tr><td style="padding-left:3px;"><font color="' + t_titc + '" face="' + t_ff + '" ';		t_y += 'style="color:' + t_titc + ';font-family:' + t_ff + ';font-size:' + t_fsz + ';"><b>';		t_y += (tt_n4? '&nbsp;' : '') + t_tit + '<\/b><\/font><\/td><\/tr>';	}	t_y += '<tr><td><table border="0" cellpadding="' + t_padd + '" cellspacing="' + t_bw + '" width="100%">';	t_y += '<tr><td' + (t_bgc? (' bgcolor="' + t_bgc + '"') : '') + (t_bgimg? ' background="' + t_bgimg + '"' : '');	if (tt_n6) t_y += ' style="padding:' + t_padd + 'px;"';	t_y += '><font color="' + t_fc + '" face="' + t_ff + '"';	t_y += ' style="color:' + t_fc + ';font-family:' + t_ff + ';font-size:' + t_fsz + ';font-weight:' + t_fwght + ';">';	if (t_fwght == 'bold') t_y += '<b>';	t_y += txt;	if (t_fwght == 'bold') t_y += '<\/b>';	t_y += '<\/font><\/td><\/tr><\/table><\/td><\/tr><\/table>';	if (t_shw)	{		var t_spct = Math.round(t_shw*1.3);		if (tt_n4)		{			t_y += '<layer bgcolor="' + t_shc + '" left="' + t_w + '" top="' + t_spct + '" width="' + t_shw + '" height="0"><\/layer>';			t_y += '<layer bgcolor="' + t_shc + '" left="' + t_spct + '" align="bottom" width="' + (t_w-t_spct) + '" height="' + t_shw + '"><\/layer>';		}		else		{			var t_opa = tt_n6? '-moz-opacity:0.85;' : tt_ie? 'filter:Alpha(opacity=85);' : '';			t_y += '<div id="' + t_id + 'R" style="position:absolute;background:' + t_shc + ';left:' + t_w + 'px;top:' + t_spct + 'px;width:' + t_shw + 'px;height:1px;overflow:hidden;' + t_opa + '"><\/div>';			t_y += '<div style="position:relative;background:' + t_shc + ';left:' + t_spct + 'px;top:0px;width:' + (t_w-t_spct) + 'px;height:' + t_shw + 'px;overflow:hidden;' + t_opa + '"><\/div>';		}	}	t_y += '<\/div>';	return t_y;}function tt_Init(){	if (!(tt_op || tt_n4 || tt_n6 || tt_ie || tt_w3c)) return;	var htm = tt_n4? '<div style="position:absolute;"><\/div>' : '',	tags,	t_tj,	over,	esc = 'return escape(';	var i = tt_tags.length; while (i--)	{		tags = tt_ie? (document.all.tags(tt_tags[i]) || 1)			: document.getElementsByTagName? (document.getElementsByTagName(tt_tags[i]) || 1)			: (!tt_n4 && tt_tags[i]=="a")? document.links			: 1;		if (tt_n4 && (tt_tags[i] == "a" || tt_tags[i] == "layer")) tags = tt_N4Tags(tt_tags[i]);		var j = tags.length; while (j--)		{			if (typeof (t_tj = tags[j]).onmouseover == "function" && t_tj.onmouseover.toString().indexOf(esc) != -1 && !tt_n6 || tt_n6 && (over = t_tj.getAttribute("onmouseover")) && over.indexOf(esc) != -1)			{				if (over) t_tj.onmouseover = new Function(over);				var txt = unescape(t_tj.onmouseover());				htm += tt_Htm(					t_tj,					"tOoLtIp"+i+""+j,					txt.wzReplace("& ","&")				);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -