欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Layui实现数据表格中鼠标悬浮图片放大效果,离开时恢复原图的方法

程序员文章站 2022-08-02 21:22:55
如下所示: var tableins = window.demotable = table .render({ elem : '#idtest',...

如下所示:

var tableins = window.demotable = table
  .render({
   elem : '#idtest',
   id : 'idtest',
   url : '<%=path%>/partymember/getpartymembersbyorgcode',
   //width : 1500,
   height : 'full',
   cols : [ [ //标题栏
    {checkbox : true,lay_checked : false,filter : 'test'}, 
    {field: 'head_url', title: '头像', width: 100, align: 'center',templet:'#imgtpl'},

    //{field : 'pm_code',title : '党员编号',width : 220,sort : true,align : 'center'}, 
    {field : 'name',title : '党员姓名',width : 110,sort : true,align : 'center'}, 
    {field : 'sex',title : '性别',width : 70,sort : true,align : 'center',templet:'#sextpl'}, 
    {field : 'age',title : '年龄',width : 70,sort : true,align : 'center'}, 
    {field : 'party_age',title : '党龄',width : 70,sort : true,align : 'center'}, 
    {field : 'birth_date',title : '出生日期',width : 120,sort : true,align : 'center'}, 
    {field : 'join_pm_date',title : '入党时间',width : 120,sort : true,align : 'center'}, 
    {field : 'full_pm_date',title : '转正时间',width : 120,sort : true,align : 'center'}, 
    {field : 'type',title : '类别',width : 120,sort : true,align : 'center',templet:'#typetpl'}, 
    {field : 'mobile_no',title : '手机号码',width : 150,sort : true,align : 'center'}, 
    //{field : 'code',title : '组织编码',width : 220,sort : true,align : 'center'}, 
    {field : 'org_name',title : '所在支部',width : 230,sort : true,align : 'center'}, 
    {field : 'unit_name',title : '所在单位',width : 220,sort : true,align : 'center'}, 
    {fixed : 'right',title : '操作',width : 220,align : 'center',toolbar : '#bardemo'} ] ],
   page : true //是否显示分页
   ,
   limits : [ 15, 20,50, 100 ],
   limit : 15
  //每页默认显示的数量
   ,done:function(res,curr,count){
    hoveropenimg();//显示大图
    $('table tr').on('click',function(){
      $('table tr').css('background','');
      $(this).css('background','<%=propkit.use("config.properties").get("table_color")%>');
     });
   }
  });

在done函数中调用hoveropenimg方法,以及单击表格行高亮的效果。

其中hoveropenimg方法实现如下:

function hoveropenimg(){
  var img_show = null; // tips提示
  $('td img').hover(function(){
   //alert($(this).attr('src'));
   var img = "<img class='img_msg' src='"+$(this).attr('src')+"' style='width:130px;' />";
   img_show = layer.tips(img, this,{
    tips:[2, 'rgba(41,41,41,.5)']
    ,area: ['160px']
   });
  },function(){
   layer.close(img_show);
  });
  $('td img').attr('style','max-width:70px');
 }

同样比较好理解,当td下的img被鼠标悬浮时,构造一个img元素,通过layer.tips方法在右边渲染该图片,当鼠标离开时,使用layer.close把当前提示框关闭,同时设置了下最大宽度max-width样式。

效果如下:

Layui实现数据表格中鼠标悬浮图片放大效果,离开时恢复原图的方法

鼠标悬浮时:

Layui实现数据表格中鼠标悬浮图片放大效果,离开时恢复原图的方法

以上这篇layui实现数据表格中鼠标悬浮图片放大效果,离开时恢复原图的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。