1.图片悬浮提示
//鼠标悬停提示特效 $("#imgTipInfo").hover(function() { openMsg(); }, function() { layer.close(subtips); }); function openMsg() { subtips = layer.tips('layui悬浮提示信息!', '#imgTipInfo',{tips:[1,'#ff6700'],time: 30000}); }