layui鼠标滑过悬浮展示图片
2020-07-17 本文已影响0人
木木呦
效果图
<img onmouseover='hoverOpenImg(this)' style='color: #1200ff;width: 30px; height: 30px;' src='https://img.haomeiwen.com/i14523486/6ab447443ee874ff.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240'/>
// 悬浮展示图片
function hoverOpenImg(_this){
var img_show = null; // tips提示
$(_this).hover(function(){
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);
});
$(_this).attr('style','max-width:70px');
}