溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果

發(fā)布時間:2021-06-25 11:35:35 來源:億速云 閱讀:197 作者:小新 欄目:web開發(fā)

這篇文章主要介紹Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

如下所示:

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 : '轉(zhuǎn)正時間',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
  //每頁默認顯示的數(shù)量
   ,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函數(shù)中調(diào)用hoverOpenImg方法,以及單擊表格行高亮的效果。

其中hoverOpenImg方法實現(xiàn)如下:

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被鼠標懸浮時,構(gòu)造一個img元素,通過layer.tips方法在右邊渲染該圖片,當鼠標離開時,使用layer.close把當前提示框關(guān)閉,同時設(shè)置了下最大寬度max-width樣式。

效果如下:

Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果

鼠標懸浮時:

Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果

以上是“Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI