layui点击图片实现预览功能,要怎么实现呢?layui点击图片实现预览功能,要怎么实现呢? HTML内使用代码: img src="..." alt="..." width="200px" height="200px" class="layui-upload-img" onclick="previewImg(this)" JS代码部分: function previewImg(obj) { var img = new Image(); img.src = obj.src; var height=img.height,width=img.width;
HTML内使用代码:
<img src="..." alt="..." width="200px" height="200px" class="layui-upload-img" onclick="previewImg(this)">
JS代码部分:
function previewImg(obj) {
var img = new Image();
img.src = obj.src;
var height=img.height,width=img.width;
if(img.height > 600) {
height = '600px';
width=(600/(img.height))*(img.width);
}
var imgHtml = "<img src='" + obj.src + "' height='"+height+"' width='"+width+"' />";
//弹出层
layer.open({
type: 1,
offset: 'auto',
area: [width,'auto'],
shadeClose:true,//点击外围关闭弹窗
scrollbar: false,//不现实滚动条
title: "图片预览", //不显示标题
content: imgHtml, //捕获的元素,注意:最好该指定的元素要存放在body最外层,否则可能被其它的相对元素所影响
cancel: function () {
}
});
}
沃梦达教程
本文标题为:layui点击图片实现预览功能
基础教程推荐
猜你喜欢
- 如何使文本区域适合当前视口的宽度(<;textarea>;)? 2022-01-01
- 是否可以从 beforeSend 回调中修改 XMLHttpRequest 数据? 2022-01-01
- 创建离子卡列表 2022-01-01
- “站点 url"中发生错误:未捕获的类型错误:无法使用 Selenium 和 Python 读取未定义的属性“getColomnSet" 2022-01-01
- 获取Express中的请求数 2022-01-01
- 在 JavaScript 中返回多个值? 2022-01-01
- 从 fetch 请求中获取 html 2022-01-01
- jqGrid - 仅编辑可编辑列的某些行 2022-01-01
- ReferenceError:使用 performance.now() 时未定义性能 2022-01-01
- 使用 :before CSS 伪元素将图像添加到模态 2022-01-01