cekong

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

统计

layui hover显示图片

参考:Layui 数据表格显示图片,鼠标滑过图片放大

HTML img 刷新图片的问题

layer Tips的简单使用及图片显示

复制代码
table.render({
      elem: "#table_list",
      url: "/table",
      cols: [
        [
          { checkbox: true, fixed: true },
          { field: "id", title: "ID", align: "center", sort: true, width: 50 },
          { field: "image", title: "图片"},
        ]
      ],
      id: "listReload",
      page: true,
      height: "full-130",
      done:function(res,curr,count){
        console.log("*****")
            hoverOpenImg();//hover显示大图      
            $('table tr').on('click',function(){
              console.log("*****")
                $('table tr').css('background','');
                $(this).css('background','<%=PropKit.use("config.properties").get("table_color")%>');
            });
        }
    });
 
    function hoverOpenImg(){      
      var img_show = null; // tips提示
    var kd,kd1
      $('tbody tr').hover(function(){
         // console.log($(this)[0].childNodes[5].innerText)
          kd=$(this).width();
          kd1=kd*0.2;          //图片放大倍数
          var img = "<img class='img_msg' src='"+$(this)[0].childNodes[5].innerText+"?t"+Math.random()+"' style='width:"+kd1+"px;' />";
          img_show = layer.tips(img,".input-cont",{time:0, tips: [3, '#ffffff']});
          console.log(img)      
    },function(){
        layer.close(img_show);
    });
    $('td img').attr('style','max-width:50px;display:block!important');
}
复制代码

 

posted on   cekong  阅读(1953)  评论(0编辑  收藏  举报

编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示