function getViewportHeight() {
if (window.innerHeight!=window.unknown) は window.innerHeight を返します。
if (document.compatMode=='CSS1Compat') return document.documentElement.clientHeight;
if (document.body) return document.body.clientHeight;
return window.unknown;
}
function getViewportWidth() {
if (window.innerWidth!=window.unknown) return window.innerWidth;
if (document.compatMode=='CSS1Compat') return document.documentElement.clientWidth;
if (document.body) return document.body.clientWidth;
return window.unknown;
}
/**
* 実際のスクロールトップを取得します
*/
function getScrollTop() {
if (self.pageYOffset) // Explorer 以外のすべて
{
self を返します。ページYオフセット;
}
else if (document.documentElement && document.documentElement.scrollTop)
// Explorer 6 Strict
{
return document.documentElement.scrollTop;
}
else if (document.body) // 他のすべてのエクスプローラー
{
return document.body.scrollTop;
}
}
function getScrollLeft() {
if (self.pageXOffset) // エクスプローラーを除くすべて
{
return self.pageXOffset;
}
else if (document.documentElement && document.documentElement.scrollLeft)
// Explorer 6 Strict
{
return document.documentElement.scrollLeft;
}
else if (document.body) // 他のすべてのエクスプローラー
{
return document.body.scrollLeft;
}
}
/*
[html]
渐变の出力図片
使用方法:
ToolTip.js にネットワーク本体の结束标签を含める
使用方法:
[code]
.trans_msg
{
filter:alpha(opacity=100,enabled=1) believeTrans(duration=.2,transition=1) Blendtrans(duration=.2);
*/
//--変数の初期化--
var rT=true;//画像の遷移を許可します
var bT=true;//画像のフェードインとフェードアウトを許可します
var tw =150 ;//プロンプトボックスの幅
var endaction=false;//アニメーションの終了
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all; = ドキュメント .all;
offsetY = 20;
関数 initToolTips()
{
tempDiv = document.createElement(" ") ;
tempDiv.id = "toolTipLayer";
tempDiv.style.position = "absolute";
tempDiv.style.display = "none";
document.body.appendChild(tempDiv );
if(ns4||ns6||ie4)
{
if(ns4) toolTipSTYLE = document.toolTipLayer;
else if(ns6) toolTipSTYLE = document.getElementById("toolTipLayer") .style ;
else if(ie4) toolTipSTYLE = document.all.toolTipLayer.style;
if(ns4) document.captureEvents(Event.MOUSEMOVE);可視性 = "可視";
toolTipSTYLE.display = "なし";
document.onmousemove = moveToMouseLoc;
}
}
関数toolTip(msg, fg, bg)
{
try {
if(toolTip.arguments.length < 1) // 隠す
{
if(ns4)
{
toolTipSTYLE.visibility = "hidden ";
}
else
{
//-画像遷移、フェードアウト処理--
if (!endaction) {toolTipSTYLE.display = "none";}
if ( rT) document.all("msg1").filters[1].Apply();
if (bT) document.all("msg1").filters[2].Apply(); document.all("msg1").filters[0].opacity=0;
if (rT) document.all("msg1").filters[1].Play(); document.all("msg1").filters[2].Play();
if (rT){
if (document.all("msg1").filters[1].status==1 | | ドキュメント .all("msg1").filters[1].status==0){
toolTipSTYLE.display = "none";}
}
if (bT){
if ( document.all("msg1").filters[2].status==1 || document.all("msg1").filters[2].status==0){
toolTipSTYLE.display = "none" ;}
}
if (!rT && !bT) toolsTipSTYLE.display = "none"; -
}
}
else // show
{
if(!fg) fg = "#777777";
if(!bg) bg = "#eeeeee";
var content =
'
'
' table> ;';
if(ns4)
toolTipSTYLE.document.write(content);
toolTipSTYLE.document.visibility = "可視" ;
}
if(ns6)
{
document.getElementById("toolTipLayer").innerHTML = content;
toolTipSTYLE.display='block'
}
if (ie4)
{
document.all("toolTipLayer").innerHTML=content;
toolTipSTYLE.display='block'
//--画像遷移、フェードイン処理--
var cssopaction=document.all("msg1").filters[0].opacity
document.all("msg1").filters[0].opacity=0;
if (rT) ドキュメント.all ("msg1").filters[1].Apply();
if (bT) document.all("msg1").filters[2].Apply();
document.all(" msg1" ).filters[0].opacity=cssopaction;
if (rT) document.all("msg1").filters[1].Play();
if (bT) document.all(" msg1" ).filters[2].Play();
//----------------------
}
}
} catch(e) {}
}
function moveToMouseLoc(e)
{
varscrollTop = getScrollTop();
varscrollLeft = getScrollLeft(); || ns6)
{
x = e.pageX スクロール左;
y = e.pageY - スクロールトップ;
else
{
x = イベント.clientX ;
y = イベント.clientY;
}
if (x-scrollLeft > getViewportWidth() / 2) {
x = x - document.getElementById("toolTipLayer")。 offsetWidth - 2 * offsetX;
}
if ((y document.getElementById("toolTipLayer").offsetHeight offsetY)>getViewportHeight()) {
y = getViewportHeight()-document. getElementById( "toolTipLayer").offsetHeight-offsetY;
}
toolTipSTYLE.left = (x offsetX) 'px';
toolTipSTYLE.top = (y offsetYscrollTop) 'px'; true;
}
initToolTips();
メイン ページ:
index.css の紹介
コードをコピーします🎜>
コードは次のとおりです:
導入ToopTip.js
<スクリプト言語="javascript" src="js/ToolTip.js">