程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 四種提示框代碼

四種提示框代碼

編輯:關於PHP編程

<head>
<title>圖像效果演示</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
/*
舜子制作
Made by PuterJam
*/
//--初始化變量--
var rT=true;//允許圖像過渡
var bT=true;//允許圖像淡入淡出
var tw=150;//提示框寬度
var endaction=false;//結束動畫
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
offsetX = 0;
offsetY = 20;
var toolTip;
function initToolTips()
{
  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);
      else
      {
      toolTipSTYLE.visibility = "visible";
      toolTipSTYLE.display = "none";
      }
      document.onmousemove = moveToMouseLoc;
  }
}
function toolTip(msg, fg, bg)
{
  if(toolTip.arguments.length < 1) // hide
  {
      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();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved