bootstrap把小图片放大
未知
2021-05-11 15:12:53
0

<td class="openimg"><img style="width: 100px; cursor: default;" class="showpic" src="46d93f2b3d42a31.png" alt="" ></td>

<style type="text/css">
        #ShowImage_Form .modal-body .carousel-inner{
            width: auto;
        }
    </style>

    <div id="ShowImage_Form" class="modal hide">    
            <div class="modal-header" style="background-color: red;">
                 <button data-dismiss="modal" class="close" type="button" >
                     <span aria-hidden="true" style="font-size: 30px">&times;</span>
                 </button>
            </div>
               <div class="modal-body">
                <div id="img_show" style="justify-content: center;display: flex;">
                </div>
            </div>
        
    </div>
        <script type="text/javascript">
            $(".showpic").click(function(){
                 source=$(this).attr('src');
                $("#ShowImage_Form").find("#img_show").html("<image src='"+source+"' class='carousel-inner img-responsive img-rounded' />");
                 $("#ShowImage_Form").modal();
                 $("#ShowImage_Form").removeClass('hide');

            })
            
            $(".openimg img").attr('onmouseover',"this.style.cursor='pointer';this.style.cursor='hand'")
            $(".openimg img").attr('onmouseout',"this.style.cursor='default'")
        </script>

相关内容

html下载阿里云oss文...
html或者react下载阿里云oss文件视频图片
2024-08-04 10:27:02
table.bootstr...
table.bootstrapTable('refresh' 传参
2024-05-11 17:38:01
视频号小店跳到微信小程序的...
视频号小店跳到微信小程序的路径
2024-04-23 17:28:30
php视频号小店解密jso...
php视频号小店解密xml的示例有,但是小店的回包是json那么就...
2024-04-23 15:54:06
将Html5手机端网站封装...
将Html5手机端网站封装为微信小程序的方法
2024-03-29 11:02:54
bootstrap表格文字...
bootstrap表格文字汉字换行
2024-01-23 14:51:33

热门资讯

JavaScript获取当前协... JavaScript获取当前协议,域名,路径
解决Phpcms V9手机门户... 第一步:开启手机网站。位置:模块 》手机门户 》 添加手机站点,如果模块里面没有手机门户,那么就在模...
layui tooltip提示... 在layui表单中,我们想把一个标签做出提示,以标明这个表单元素是做什么有什么功能时,就可以用上提...
layui中出错Unexpec... layui中出错Unexpected identifier
如何在html中禁止复制文字 问题描述: 如何禁止别人复制自己的文章? 解决办法: 在body标签中添加以下代码: onconte...
JS实现html打印功能,打印... !DOCTYPE htmlhtmlhead meta charset=utf-8 title打印功能...
bootstrap 图片文字居... 问题描述: 让图片和文字居中显示。 解决办法: !-- style--.navbars img{ m...
bootstrap图片排版布局 问题描述: 在使用bootstrap的时候,出现了这样的问题。 排版对不齐。 解决办法: 通过上图发...
手机端底部定位 问题描述: 需要实现的效果 解决办法: !-- 底部 -- div class=layui-row ...