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 toolTipSTYLE="";
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();

www.phpzy.comtrue/php/23179.htmlTechArticle四种提示框代码 head title图像效果演示/title meta http-equiv="Content-Type" content="text/html; charset=gb2312" script /* 舜子制作 Made by PuterJam */ //--初始化变量-- var rT=true;//允许图像过渡 var bT=true;//允许...

相关文章

    暂无相关文章

PHP之友评论

今天推荐