真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

十載的開平網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整開平建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)公司從事“開平網(wǎng)站設(shè)計”,“開平網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

如下所示:

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_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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站題目:Layui如何實現(xiàn)數(shù)據(jù)表格中鼠標懸浮圖片放大效果
分享URL:http://weahome.cn/article/gjsdoi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部