论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Javascript教程
Tag:验证,特效,入门,实例,验证,表单,特效,正则表达式,跑马灯,document,函数,代码,getElementByID,菜单,图片,视频教程

JavaScript实现鼠标悬停显示缩略图

文章类别:Javascript | 发表日期:2009-9-15 14:00:16

// JScript 文件
showPhoto =
{
     containerID:'container',
     init:function()
     {
         if(!document.getElementById||!document.createTextNode)

          {return;}
           //取到table标签
           showPhoto.table=document.getElementsByTagName('table');
           if(!showPhoto.table){return;}
           //取到姓名的超链接
           var namelinks=document.getElementsByTagName('a');
           showPhoto.all=namelinks.length;
  
           for(var i=0;i<showPhoto.all;i++)
           {
             namelinks[i].attachEvent('onmouseover',showPhoto.show);
            
             namelinks[i].attachEvent('onmouseout',showPhoto.hide);
           }
          
           showPhoto.creatContainer();
     },
   
    show: function(e)
    {
        var t=window.event.srcElement;
        var x=t.offsetLeft;
        var y=t.parentNode.offsetTop;
        //alert(x+'+'+y);
        var str=new String(t);
//alert(str);
        var photoURL='http://localhost:1903/List'+str.slice
        (str.indexOf("~")+1,str.length);
//alert(photoURL);
        showPhoto.setPic(photoURL);
        showPhoto.c.style.top=y+190;
        showPhoto.c.style.left=x-120;
        //showPhoto.c.style.width=100;
        showPhoto.c.style.position='absolute';
    },
   
    creatContainer:function()
    {
       showPhoto.c=document.createElement('div');
   showPhoto.c.id=showPhoto.containerID;
       var p=document.createElement('p');

       showPhoto.c.appendChild(p)
       if(!showPhoto.table[0]){return;}
       showPhoto.table[0].parentNode.appendChild(showPhoto.c);     
    },
   
    hide:function()
    {
       var p=showPhoto.c.getElementsByTagName('p')[0];
       p.innerHTML='';
    },
   
    setPic:function(pic)
    {

      //注意此处的[0]不可丢
       var picture=showPhoto.c.getElementsByTagName('p')[0];
       picture.innerHTML='';

          showPhoto.c.className='show';
          var i=document.createElement('img');
          i.setAttribute('src',pic);
          if(i.width>200)
          {
             i.width=180
          }
          if(i.height>250)
          {
             i.height=250
          }
          picture.appendChild(i);
    }
}
window.onload=showPhoto.init;

上一篇:JavaScript中的陷阱详解 人气:2362
下一篇:javascript动态创建表格 人气:2619
视频教程列表
文章教程搜索
 
Javascript推荐教程
Javascript热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058